* starttls.c (main): Added --help option.
authorueno <ueno>
Fri, 11 Aug 2006 01:25:17 +0000 (01:25 +0000)
committerueno <ueno>
Fri, 11 Aug 2006 01:25:17 +0000 (01:25 +0000)
ChangeLog
starttls.c

index 074639b..4392923 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2006-08-11  Daiki Ueno  <ueno@unixuser.org>
+
+       * starttls.c (main): Added --help option.
+
 2006-08-10  Daiki Ueno  <ueno@unixuser.org>
 
        * starttls.c (main): Use poll(2) emulation from gnulib; avoid some
index 4127db7..3002201 100644 (file)
@@ -135,12 +135,13 @@ main (argc, argv)
     {
       {"cert-file", 1, 0, 'c'},
       {"key-file", 1, 0, 'k'},
+      {"help", 0, 0, 'h'},
       {0, 0, 0, 0}
     };
 
   while (1)
     {
-      c = getopt_long (argc, argv, "c:k:", long_options, &option_index);
+      c = getopt_long (argc, argv, "c:k:h", long_options, &option_index);
       if (c == -1)
        break;
     
@@ -152,6 +153,9 @@ main (argc, argv)
        case 'k':
          opt_key_file = optarg;
          break;
+       case 'h':
+         usage (argv[0]);
+         return 0;
        default:
          usage (argv[0]);
          return 1;