From: okada Date: Tue, 22 Jan 2002 09:00:07 +0000 (+0000) Subject: * starttls.c: Fix the argument of getopt_long. X-Git-Tag: starttls-0_9~17 X-Git-Url: http://git.chise.org/gitweb/?a=commitdiff_plain;h=ec668ac6fa78509ee11ede3446d801fe94326a1d;p=elisp%2Fstarttls.git * starttls.c: Fix the argument of getopt_long. --- diff --git a/ChangeLog b/ChangeLog index 9d64af6..3849413 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2002-01-22 Kenichi OKADA + + * starttls.c: Fix the argument of getopt_long. + 2002-01-22 Daiki Ueno * configure.in: Don't check the existence of "socks.h". diff --git a/starttls.c b/starttls.c index 93c562b..37cf993 100644 --- a/starttls.c +++ b/starttls.c @@ -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;