diff options
author | Kartik Mistry <kartik.mistry@gmail.com> | 2015-05-09 20:16:50 +0530 |
---|---|---|
committer | Tobias Klauser <tklauser@distanz.ch> | 2015-05-11 10:53:35 +0200 |
commit | 75162e7efe04bfc2bad6b0268bb562628ba0baf6 (patch) | |
tree | 9ca3e3f48a0640321ab3096bed329a271325fb5c | |
parent | 9118e9e8673eb88ebf4f7af33d8ed9856f3ed554 (diff) |
netsniff-ng: Fix typo Unkown -> Unknown
Fix typo in error message.
Signed-off-by: Kartik Mistry <kartik.mistry@gmail.com>
Signed-off-by: Tobias Klauser <tklauser@distanz.ch>
-rw-r--r-- | netsniff-ng.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/netsniff-ng.c b/netsniff-ng.c index afa522f..d3e9a13 100644 --- a/netsniff-ng.c +++ b/netsniff-ng.c @@ -1302,7 +1302,7 @@ int main(int argc, char **argv) else if (!strncmp(optarg, "qm", strlen("qm"))) ctx.fanout_type = PACKET_FANOUT_QM; else - panic("Unkown fanout type!\n"); + panic("Unknown fanout type!\n"); break; case 'L': if (!strncmp(optarg, "defrag", strlen("defrag"))) @@ -1310,7 +1310,7 @@ int main(int argc, char **argv) else if (!strncmp(optarg, "roll", strlen("roll"))) ctx.fanout_type |= PACKET_FANOUT_FLAG_ROLLOVER; else - panic("Unkown fanout option!\n"); + panic("Unknown fanout option!\n"); break; case 't': if (!strncmp(optarg, "host", strlen("host"))) |