diff mbox

[libnftnl] expr: ct: fix typo unknow vs unknown

Message ID 146107048656.24580.723189658185274524.stgit@nfdev2.cica.es
State Accepted
Delegated to: Florian Westphal
Headers show

Commit Message

Arturo Borrero April 19, 2016, 12:54 p.m. UTC
Reported by Debian's lintian tool.

Signed-off-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
---
 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

Comments

Florian Westphal April 19, 2016, 1:21 p.m. UTC | #1
Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com> wrote:
> Reported by Debian's lintian tool.

Applied, thanks Arturo.
--
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 mbox

Patch

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";
 	}
 }