From ec668ac6fa78509ee11ede3446d801fe94326a1d Mon Sep 17 00:00:00 2001 From: okada Date: Tue, 22 Jan 2002 09:00:07 +0000 Subject: [PATCH] * starttls.c: Fix the argument of getopt_long. --- ChangeLog | 4 ++++ starttls.c | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) 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; -- 1.7.10.4