[or-cvs] r13876: Patch from karsten: proper error message from tor-gencert wh (in tor/trunk: . src/tools)

nickm at seul.org nickm at seul.org
Wed Mar 5 22:39:49 UTC 2008


Author: nickm
Date: 2008-03-05 17:39:49 -0500 (Wed, 05 Mar 2008)
New Revision: 13876

Modified:
   tor/trunk/
   tor/trunk/src/tools/tor-gencert.c
Log:
 r18632 at 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



Property changes on: tor/trunk
___________________________________________________________________
 svk:merge ticket from /tor/trunk [r18632] on 8246c3cf-6607-4228-993b-4d95d33730f1

Modified: tor/trunk/src/tools/tor-gencert.c
===================================================================
--- tor/trunk/src/tools/tor-gencert.c	2008-03-05 22:31:39 UTC (rev 13875)
+++ tor/trunk/src/tools/tor-gencert.c	2008-03-05 22:39:49 UTC (rev 13876)
@@ -179,7 +179,7 @@
       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]);



More information about the tor-commits mailing list