diff options
author | jsing <> | 2014-08-28 13:55:19 +0000 |
---|---|---|
committer | jsing <> | 2014-08-28 13:55:19 +0000 |
commit | 20dd3d98ab544891d2ff1d18d858c7e1820c1553 (patch) | |
tree | d3a765c0ed661df846dcdbc0cdfef6556e9401c8 /src | |
parent | af1adf7eec8c1c8de2deb4e5a6b6301520630357 (diff) | |
download | openbsd-20dd3d98ab544891d2ff1d18d858c7e1820c1553.tar.gz openbsd-20dd3d98ab544891d2ff1d18d858c7e1820c1553.tar.bz2 openbsd-20dd3d98ab544891d2ff1d18d858c7e1820c1553.zip |
Given the usage option name/argument name width a few more characters.
Diffstat (limited to 'src')
-rw-r--r-- | src/usr.bin/openssl/apps.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr.bin/openssl/apps.c b/src/usr.bin/openssl/apps.c index e34aeaecba..76977ec44a 100644 --- a/src/usr.bin/openssl/apps.c +++ b/src/usr.bin/openssl/apps.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: apps.c,v 1.6 2014/08/28 13:51:38 jsing Exp $ */ | 1 | /* $OpenBSD: apps.c,v 1.7 2014/08/28 13:55:19 jsing Exp $ */ |
2 | /* | 2 | /* |
3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> | 3 | * Copyright (c) 2014 Joel Sing <jsing@openbsd.org> |
4 | * | 4 | * |
@@ -2246,7 +2246,7 @@ options_usage(struct option *opts) | |||
2246 | continue; | 2246 | continue; |
2247 | argname = (opts[i].argname != NULL) ? opts[i].argname : ""; | 2247 | argname = (opts[i].argname != NULL) ? opts[i].argname : ""; |
2248 | snprintf(buf, sizeof(buf), "-%s %s", opts[i].name, argname); | 2248 | snprintf(buf, sizeof(buf), "-%s %s", opts[i].name, argname); |
2249 | fprintf(stderr, " %-*s %s\n", 14, buf, opts[i].desc); | 2249 | fprintf(stderr, " %-*s %s\n", 16, buf, opts[i].desc); |
2250 | } | 2250 | } |
2251 | } | 2251 | } |
2252 | 2252 | ||