[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r13118: Fix output of "tor-gencert --help" (in tor/trunk: . src/tools)
Author: nickm
Date: 2008-01-12 18:52:05 -0500 (Sat, 12 Jan 2008)
New Revision: 13118
Modified:
tor/trunk/
tor/trunk/src/tools/tor-gencert.c
Log:
r17584@catbus: nickm | 2008-01-12 18:52:01 -0500
Fix output of "tor-gencert --help"
Property changes on: tor/trunk
___________________________________________________________________
svk:merge ticket from /tor/trunk [r17584] on 8246c3cf-6607-4228-993b-4d95d33730f1
Modified: tor/trunk/src/tools/tor-gencert.c
===================================================================
--- tor/trunk/src/tools/tor-gencert.c 2008-01-12 19:50:52 UTC (rev 13117)
+++ tor/trunk/src/tools/tor-gencert.c 2008-01-12 23:52:05 UTC (rev 13118)
@@ -53,10 +53,11 @@
show_help(void)
{
fprintf(stderr, "Syntax:\n"
- "tor-gencert [-h|--help] [-v] [--create-identity-key] "
- "[-i identity_key_file]\n"
- " [-s signing_key_file] [-c certificate_file] "
- "[--reuse-signing-key]\n");
+ "tor-gencert [-h|--help] [-v] [-r|--reuse] [--create-identity-key]\n"
+ " [-i identity_key_file] [-s signing_key_file] "
+ "[-c certificate_file]\n"
+ " [-m lifetime_in_months] [-a address:port]\n");
+
}
/* XXXX copied from crypto.c */