diff options
author | 2014-08-28 13:55:19 +0000 | |
---|---|---|
committer | 2014-08-28 13:55:19 +0000 | |
commit | 1192f141b2be1d4979fb0d4c80868b9ffe668add (patch) | |
tree | 6c8a8afda24374c412803355a23bea77ff4f4834 | |
parent | Ensure that a format option argument is a known specifier. (diff) | |
download | wireguard-openbsd-1192f141b2be1d4979fb0d4c80868b9ffe668add.tar.xz wireguard-openbsd-1192f141b2be1d4979fb0d4c80868b9ffe668add.zip |
Given the usage option name/argument name width a few more characters.
-rw-r--r-- | usr.bin/openssl/apps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/openssl/apps.c b/usr.bin/openssl/apps.c index e34aeaecba3..76977ec44ab 100644 --- a/usr.bin/openssl/apps.c +++ b/usr.bin/openssl/apps.c @@ -1,4 +1,4 @@ -/* $OpenBSD: apps.c,v 1.6 2014/08/28 13:51:38 jsing Exp $ */ +/* $OpenBSD: apps.c,v 1.7 2014/08/28 13:55:19 jsing Exp $ */ /* * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> * @@ -2246,7 +2246,7 @@ options_usage(struct option *opts) continue; argname = (opts[i].argname != NULL) ? opts[i].argname : ""; snprintf(buf, sizeof(buf), "-%s %s", opts[i].name, argname); - fprintf(stderr, " %-*s %s\n", 14, buf, opts[i].desc); + fprintf(stderr, " %-*s %s\n", 16, buf, opts[i].desc); } } |