From: Pekka Riikonen Date: Sun, 23 Jun 2002 14:51:51 +0000 (+0000) Subject: Options fix. X-Git-Tag: 1.2.beta1~1272 X-Git-Url: http://git.silcnet.org/gitweb/?a=commitdiff_plain;h=033514af4e8167b4484a5fc2109952652ceac66a;p=crypto.git Options fix. --- diff --git a/apps/irssi/src/silc/core/silc-core.c b/apps/irssi/src/silc/core/silc-core.c index 6b09e1f6..fedb2106 100644 --- a/apps/irssi/src/silc/core/silc-core.c +++ b/apps/irssi/src/silc/core/silc-core.c @@ -326,13 +326,13 @@ void silc_core_init(void) { NULL, '\0', POPT_ARG_CALLBACK, (void *)&silc_opt_callback, '\0', NULL }, { "show-key", 'S', POPT_ARG_STRING, NULL, 0, "Show the contents of the public key", "FILE" }, - { "list-ciphers", 'c', POPT_ARG_NONE, NULL, 0, + { "list-ciphers", 0, POPT_ARG_NONE, NULL, 0, "List supported ciphers", NULL }, - { "list-hash-funcs", 'H', POPT_ARG_NONE, NULL, 0, + { "list-hash-funcs", 0, POPT_ARG_NONE, NULL, 0, "List supported hash functions", NULL }, - { "list-hmacs", 'M', POPT_ARG_NONE, NULL, 0, + { "list-hmacs", 0, POPT_ARG_NONE, NULL, 0, "List supported HMACs", NULL }, - { "list-pkcs", 'P', POPT_ARG_NONE, NULL, 0, + { "list-pkcs", 0, POPT_ARG_NONE, NULL, 0, "List supported PKCSs", NULL }, { "debug", 'd', POPT_ARG_STRING, NULL, 0, "Enable debugging", "STRING" }, @@ -344,9 +344,9 @@ void silc_core_init(void) { "create-key-pair", 'C', POPT_ARG_NONE, &opt_create_keypair, 0, "Create new public key pair", NULL }, { "pkcs", 0, POPT_ARG_STRING, &opt_pkcs, 0, - "Set the PKCS of the public key pair", "PKCS" }, + "Set the PKCS of the public key pair (-C)", "PKCS" }, { "bits", 0, POPT_ARG_INT, &opt_bits, 0, - "Set the length of the public key pair", "VALUE" }, + "Set the length of the public key pair (-C)", "VALUE" }, { NULL, '\0', 0, NULL } };