From patchwork Tue Apr 19 12:54:46 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Arturo Borrero X-Patchwork-Id: 612115 X-Patchwork-Delegate: fw@strlen.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3qq4jY6dNkz9t48 for ; Tue, 19 Apr 2016 22:54:57 +1000 (AEST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753570AbcDSMy4 (ORCPT ); Tue, 19 Apr 2016 08:54:56 -0400 Received: from smtp3.cica.es ([150.214.5.190]:52202 "EHLO smtp.cica.es" rhost-flags-OK-OK-OK-FAIL) by vger.kernel.org with ESMTP id S1753420AbcDSMy4 (ORCPT ); Tue, 19 Apr 2016 08:54:56 -0400 Received: from localhost (unknown [127.0.0.1]) by smtp.cica.es (Postfix) with ESMTP id 83EF851F1FF for ; Tue, 19 Apr 2016 12:54:53 +0000 (UTC) X-Virus-Scanned: amavisd-new at cica.es Received: from smtp.cica.es ([127.0.0.1]) by localhost (mail.cica.es [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4wTczesxoE0B for ; Tue, 19 Apr 2016 14:54:48 +0200 (CEST) Received: from nfdev2.cica.es (nfdev2.cica.es [IPv6:2a00:9ac0:c1ca:31::221]) by smtp.cica.es (Postfix) with ESMTP id 2CE6251F243 for ; Tue, 19 Apr 2016 14:54:47 +0200 (CEST) Subject: [libnftnl PATCH] expr: ct: fix typo unknow vs unknown From: Arturo Borrero Gonzalez To: netfilter-devel@vger.kernel.org Date: Tue, 19 Apr 2016 14:54:46 +0200 Message-ID: <146107048656.24580.723189658185274524.stgit@nfdev2.cica.es> User-Agent: StGit/0.17.1-dirty MIME-Version: 1.0 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Reported by Debian's lintian tool. Signed-off-by: Arturo Borrero Gonzalez --- src/expr/ct.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html diff --git a/src/expr/ct.c b/src/expr/ct.c index 4bee6b1..a38f40c 100644 --- a/src/expr/ct.c +++ b/src/expr/ct.c @@ -199,7 +199,7 @@ static const char *ctdir2str(uint8_t ctdir) case IP_CT_DIR_REPLY: return "reply"; default: - return "unknow"; + return "unknown"; } }