]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
base64: use *_OPTION_DESCRIPTION macros instead of hard-coded strings
authorThiago Farina <tfransosi@gmail.com>
Sun, 13 Dec 2009 19:27:59 +0000 (14:27 -0500)
committerJim Meyering <meyering@redhat.com>
Mon, 14 Dec 2009 07:35:17 +0000 (08:35 +0100)
* src/base64 (usage): Use HELP_OPTION_DESCRIPTION and
VERSION_OPTION_DESCRIPTION macros, not literal strings.

src/base64.c

index 0bca87ce4923b3cd74b4cfc9629f051b5bb4d033..723385ffc7e447c956bcbd9fe55c3154f2b79ceb 100644 (file)
@@ -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);