Blame SOURCES/wireshark-1.10.x-resolv-error-string.patch

6415a4
diff --git a/tshark.c b/tshark.c
6415a4
index f930f9d..e3ac6c6 100644
6415a4
--- a/tshark.c
6415a4
+++ b/tshark.c
dbc6ab
@@ -294,7 +294,7 @@ print_usage(gboolean print_ver)
6415a4
   fprintf(output, "  -R <read filter>         packet Read filter in Wireshark display filter syntax\n");
6415a4
   fprintf(output, "  -Y <display filter>      packet displaY filter in Wireshark display filter syntax\n");
6415a4
   fprintf(output, "  -n                       disable all name resolutions (def: all enabled)\n");
6415a4
-  fprintf(output, "  -N <name resolve flags>  enable specific name resolution(s): \"mntC\"\n");
6415a4
+  fprintf(output, "  -N <name resolve flags>  enable specific name resolution(s): \"mnNtC\"\n");
6415a4
   fprintf(output, "  -d %s ...\n", decode_as_arg_template);
6415a4
   fprintf(output, "                           \"Decode As\", see the man page for details\n");
6415a4
   fprintf(output, "                           Example: tcp.port==8888,http\n");
dbc6ab
@@ -1357,7 +1357,7 @@ main(int argc, char *argv[])
6415a4
       if (badopt != '\0') {
6415a4
         cmdarg_err("-N specifies unknown resolving option '%c';",
6415a4
                    badopt);
6415a4
-        cmdarg_err_cont( "           Valid options are 'm', 'n', 't', and 'C'");
6415a4
+        cmdarg_err_cont( "           Valid options are 'm', 'n', 'N', 't', and 'C'");
6415a4
         return 1;
6415a4
       }
6415a4
       break;