* starttls.c: Fix the argument of getopt_long.
authorokada <okada>
Tue, 22 Jan 2002 09:00:07 +0000 (09:00 +0000)
committerokada <okada>
Tue, 22 Jan 2002 09:00:07 +0000 (09:00 +0000)
ChangeLog
starttls.c

index 9d64af6..3849413 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2002-01-22  Kenichi OKADA  <okada@opaopa.org>
+
+       * starttls.c: Fix the argument of getopt_long.
+
 2002-01-22  Daiki Ueno  <ueno@unixuser.org>
 
        * configure.in: Don't check the existence of "socks.h".
index 93c562b..37cf993 100644 (file)
@@ -221,7 +221,7 @@ main (argc, argv)
 
   while (1)
     {
-      c = getopt_long (argc, argv, "c:k:v:f", long_options, &option_index);
+      c = getopt_long (argc, argv, "c:k:v:", long_options, &option_index);
       if (c == -1)
        break;