From: Niels Möller Date: Thu, 12 Jul 2018 20:39:00 +0000 (+0200) Subject: Fix handling of eratosthenes -q. X-Git-Tag: nettle_3.5rc1~55 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=95798b5c3b0128359aaba107e2bda077459a8560;p=thirdparty%2Fnettle.git Fix handling of eratosthenes -q. --- diff --git a/ChangeLog b/ChangeLog index 0dbacaa0..23a0331a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -2,6 +2,7 @@ * examples/eratosthenes.c (main): Don't allocate bitmap storage for limit == 2 (early exit), closing memory leak at exit. + (main): Fix handling of short -q option. * eccdata.c (output_curve): Replace mpz_init_set_ui by mpz_set_ui, to fix memory leak. diff --git a/examples/eratosthenes.c b/examples/eratosthenes.c index 415c6d25..71161820 100644 --- a/examples/eratosthenes.c +++ b/examples/eratosthenes.c @@ -262,7 +262,7 @@ main (int argc, char **argv) { NULL, 0, NULL, 0} }; - while ( (c = getopt_long(argc, argv, "svb:", options, NULL)) != -1) + while ( (c = getopt_long(argc, argv, "svqb:", options, NULL)) != -1) switch (c) { case OPT_HELP: