From d23970e52ecd6553cc8885a1ebd31e245b184a61 Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Tue, 2 Jul 2002 09:05:33 +0000 Subject: (usage): Use the PACKAGE_BUGREPORT e-mail address, rather than hard-coding it. --- src/chgrp.c | 2 +- src/chmod.c | 2 +- src/chown.c | 2 +- src/cp.c | 2 +- src/dd.c | 2 +- src/df.c | 2 +- src/dircolors.c | 2 +- src/du.c | 2 +- src/install.c | 2 +- src/link.c | 2 +- src/ln.c | 2 +- src/ls.c | 2 +- src/mkdir.c | 2 +- src/mkfifo.c | 2 +- src/mknod.c | 2 +- src/mv.c | 2 +- src/rm.c | 2 +- src/rmdir.c | 2 +- src/shred.c | 2 +- src/stat.c | 2 +- src/sync.c | 2 +- src/touch.c | 2 +- src/unlink.c | 2 +- 23 files changed, 23 insertions(+), 23 deletions(-) diff --git a/src/chgrp.c b/src/chgrp.c index aea989235..3253b0fb5 100644 --- a/src/chgrp.c +++ b/src/chgrp.c @@ -149,7 +149,7 @@ Change the group membership of each FILE to GROUP.\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/chmod.c b/src/chmod.c index 24f1381a5..852fe47e6 100644 --- a/src/chmod.c +++ b/src/chmod.c @@ -262,7 +262,7 @@ Change the mode of each FILE to MODE.\n\ Each MODE is one or more of the letters ugoa, one of the symbols +-= and\n\ one or more of the letters rwxXstugo.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/chown.c b/src/chown.c index 9a602d302..a95ff017e 100644 --- a/src/chown.c +++ b/src/chown.c @@ -136,7 +136,7 @@ Owner is unchanged if missing. Group is unchanged if missing, but changed\n\ to login group if implied by a `:'. OWNER and GROUP may be numeric as well\n\ as symbolic.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/cp.c b/src/cp.c index 41fe2b247..676e2fbaa 100644 --- a/src/cp.c +++ b/src/cp.c @@ -254,7 +254,7 @@ As a special case, cp makes a backup of SOURCE when the force and backup\n\ options are given and SOURCE and DEST are the same name for an existing,\n\ regular file.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/dd.c b/src/dd.c index 0b84cdaa5..c394a9499 100644 --- a/src/dd.c +++ b/src/dd.c @@ -331,7 +331,7 @@ Each KEYWORD may be:\n\ sync pad every input block with NULs to ibs-size; when used\n\ with block or unblock, pad with spaces rather than NULs\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/df.c b/src/df.c index b44498171..af4b7e390 100644 --- a/src/df.c +++ b/src/df.c @@ -790,7 +790,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ SIZE may be (or may be an integer optionally followed by) one of following:\n\ kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/dircolors.c b/src/dircolors.c index 46ccc010e..f9b6c1488 100644 --- a/src/dircolors.c +++ b/src/dircolors.c @@ -118,7 +118,7 @@ If FILE is specified, read it to determine which colors to use for which\n\ file types and extensions. Otherwise, a precompiled database is used.\n\ For details on the format of these files, run `dircolors --print-database'.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); diff --git a/src/du.c b/src/du.c index edb883f0c..61f9ce13c 100644 --- a/src/du.c +++ b/src/du.c @@ -226,7 +226,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ SIZE may be (or may be an integer optionally followed by) one of following:\n\ kB 1000, K 1024, MB 1,000,000, M 1,048,576, and so on for G, T, P, E, Z, Y.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/install.c b/src/install.c index 9c8dd3608..0d1bc0942 100644 --- a/src/install.c +++ b/src/install.c @@ -649,7 +649,7 @@ the VERSION_CONTROL environment variable. Here are the values:\n\ existing, nil numbered if numbered backups exist, simple otherwise\n\ simple, never always make simple backups\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/link.c b/src/link.c index cf9c657d7..d5c655ba3 100644 --- a/src/link.c +++ b/src/link.c @@ -56,7 +56,7 @@ Usage: %s FILE1 FILE2\n\ stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/ln.c b/src/ln.c index 1b7a87a0e..82c347b74 100644 --- a/src/ln.c +++ b/src/ln.c @@ -387,7 +387,7 @@ the VERSION_CONTROL environment variable. Here are the values:\n\ existing, nil numbered if numbered backups exist, simple otherwise\n\ simple, never always make simple backups\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/ls.c b/src/ls.c index fe702d82b..fd0941d73 100644 --- a/src/ls.c +++ b/src/ls.c @@ -3714,7 +3714,7 @@ optional WHEN argument is equivalent to using --color=always. With\n\ --color=auto, color codes are output only if standard output is connected\n\ to a terminal (tty).\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/mkdir.c b/src/mkdir.c index 2b00c2f6d..75e44fd22 100644 --- a/src/mkdir.c +++ b/src/mkdir.c @@ -73,7 +73,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/mkfifo.c b/src/mkfifo.c index 997203012..ed6736064 100644 --- a/src/mkfifo.c +++ b/src/mkfifo.c @@ -65,7 +65,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/mknod.c b/src/mknod.c index 810d63ef3..104426dad 100644 --- a/src/mknod.c +++ b/src/mknod.c @@ -83,7 +83,7 @@ MAJOR MINOR are forbidden for TYPE p, mandatory otherwise. TYPE may be:\n\ c, u create a character (unbuffered) special file\n\ p create a FIFO\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/mv.c b/src/mv.c index c8e504e28..2bea3315d 100644 --- a/src/mv.c +++ b/src/mv.c @@ -363,7 +363,7 @@ the VERSION_CONTROL environment variable. Here are the values:\n\ existing, nil numbered if numbered backups exist, simple otherwise\n\ simple, never always make simple backups\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/rm.c b/src/rm.c index 0a3899fac..d34c1933a 100644 --- a/src/rm.c +++ b/src/rm.c @@ -111,7 +111,7 @@ Note that if you use rm to remove a file, it is usually possible to recover\n\ the contents of that file. If you want more assurance that the contents are\n\ truly unrecoverable, consider using shred.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/rmdir.c b/src/rmdir.c index cebeac316..bacc911f0 100644 --- a/src/rmdir.c +++ b/src/rmdir.c @@ -157,7 +157,7 @@ Remove the DIRECTORY(ies), if they are empty.\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/shred.c b/src/shred.c index 04a9b5b01..fb77dcade 100644 --- a/src/shred.c +++ b/src/shred.c @@ -231,7 +231,7 @@ In addition, file system backups and remote mirrors may contain copies\n\ of the file that cannot be removed, and that will allow a shredded file\n\ to be recovered later.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/stat.c b/src/stat.c index c620c5578..9d1f87a49 100644 --- a/src/stat.c +++ b/src/stat.c @@ -930,7 +930,7 @@ Valid format sequences for file systems:\n\ %T - Type in human readable form\n\ %t - Type in hex\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/sync.c b/src/sync.c index 40bb5715b..2e1015764 100644 --- a/src/sync.c +++ b/src/sync.c @@ -48,7 +48,7 @@ Force changed blocks to disk, update the super block.\n\ "), stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/touch.c b/src/touch.c index 1d43c300b..9a0b81c1e 100644 --- a/src/touch.c +++ b/src/touch.c @@ -262,7 +262,7 @@ Mandatory arguments to long options are mandatory for short options too.\n\ \n\ Note that the -d and -t options accept different time-date formats.\n\ "), stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } diff --git a/src/unlink.c b/src/unlink.c index f6c57c4bf..bec995bdd 100644 --- a/src/unlink.c +++ b/src/unlink.c @@ -55,7 +55,7 @@ Usage: %s FILE\n\ stdout); fputs (HELP_OPTION_DESCRIPTION, stdout); fputs (VERSION_OPTION_DESCRIPTION, stdout); - puts (_("\nReport bugs to .")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } -- cgit v1.2.3-54-g00ecf