Explorar el Código

r18632@catbus: nickm | 2008-03-05 17:38:52 -0500
Patch from karsten: proper error message from tor-gencert when no argument is given to --passphrase-fd


svn:r13876

Nick Mathewson hace 17 años
padre
commit
670f4c19af
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      src/tools/tor-gencert.c

+ 1 - 1
src/tools/tor-gencert.c

@@ -179,7 +179,7 @@ parse_commandline(int argc, char **argv)
       make_new_id = 1;
     } else if (!strcmp(argv[i], "--passphrase-fd")) {
       if (i+1>=argc) {
-        fprintf(stderr, "No argument to -m\n");
+        fprintf(stderr, "No argument to --passphrase-fd\n");
         return 1;
       }
       passphrase_fd = atoi(argv[++i]);