Options fix.
authorPekka Riikonen <priikone@silcnet.org>
Sun, 23 Jun 2002 14:51:51 +0000 (14:51 +0000)
committerPekka Riikonen <priikone@silcnet.org>
Sun, 23 Jun 2002 14:51:51 +0000 (14:51 +0000)
apps/irssi/src/silc/core/silc-core.c

index 6b09e1f6f7261f7ddd2901c7e9986707c8699dc3..fedb21061e5fdc2a65f56e10644cd19b10fed4d0 100644 (file)
@@ -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 }
   };