summaryrefslogtreecommitdiff
path: root/src/base64.c
diff options
context:
space:
mode:
authorThiago Farina <tfransosi@gmail.com>2009-12-13 14:27:59 -0500
committerJim Meyering <meyering@redhat.com>2009-12-14 08:35:17 +0100
commitbf01ac3004bdfdbcf2e1214f6c2d83757207504a (patch)
tree67a448f149aacec69b453901561deda7a07bda5f /src/base64.c
parent5519ba24b596d1be3c8d6c51b0e9b78b874ea0c7 (diff)
downloadcoreutils-bf01ac3004bdfdbcf2e1214f6c2d83757207504a.tar.xz
base64: use *_OPTION_DESCRIPTION macros instead of hard-coded strings
* src/base64 (usage): Use HELP_OPTION_DESCRIPTION and VERSION_OPTION_DESCRIPTION macros, not literal strings.
Diffstat (limited to 'src/base64.c')
-rw-r--r--src/base64.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/base64.c b/src/base64.c
index 0bca87ce4..723385ffc 100644
--- a/src/base64.c
+++ b/src/base64.c
@@ -68,9 +68,8 @@ Base64 encode or decode FILE, or standard input, to standard output.\n\
-i, --ignore-garbage When decoding, ignore non-alphabet characters.\n\
\n\
"), stdout);
- fputs (_("\
- --help Display this help and exit.\n\
- --version Output version information and exit.\n"), stdout);
+ fputs (HELP_OPTION_DESCRIPTION, stdout);
+ fputs (VERSION_OPTION_DESCRIPTION, stdout);
fputs (_("\
\n\
With no FILE, or when FILE is -, read standard input.\n"), stdout);