hurl

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit e231337fbff684fb0318b9370191490417dd2ce0
parent 6a379d19adb10778007c7a19d557585057984b0a
Author: Hiltjo Posthuma <hiltjo@codemadness.org>
Date:   Sat,  9 Nov 2019 23:42:39 +0100

sort option (-l) alphabetically

Diffstat:
Mhurl.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/hurl.c b/hurl.c @@ -462,6 +462,9 @@ main(int argc, char **argv) long long l; ARGBEGIN { + case 'l': /* legacy ciphers */ + config_legacy = 1; + break; case 'm': /* max filesize */ errno = 0; l = strtoll(EARGF(usage()), &end, 10); @@ -469,9 +472,6 @@ main(int argc, char **argv) usage(); config_maxresponsesiz = l; break; - case 'l': /* legacy ciphers */ - config_legacy = 1; - break; case 't': /* timeout */ errno = 0; l = strtoll(EARGF(usage()), &end, 10);