diff options
-rw-r--r-- | src/chgrp.c | 2 | ||||
-rw-r--r-- | src/chmod.c | 2 | ||||
-rw-r--r-- | src/chown.c | 2 | ||||
-rw-r--r-- | src/cp.c | 2 | ||||
-rw-r--r-- | src/dd.c | 2 | ||||
-rw-r--r-- | src/df.c | 2 | ||||
-rw-r--r-- | src/dircolors.c | 2 | ||||
-rw-r--r-- | src/du.c | 2 | ||||
-rw-r--r-- | src/install.c | 2 | ||||
-rw-r--r-- | src/link.c | 2 | ||||
-rw-r--r-- | src/ln.c | 2 | ||||
-rw-r--r-- | src/ls.c | 2 | ||||
-rw-r--r-- | src/mkdir.c | 2 | ||||
-rw-r--r-- | src/mkfifo.c | 2 | ||||
-rw-r--r-- | src/mknod.c | 2 | ||||
-rw-r--r-- | src/mv.c | 2 | ||||
-rw-r--r-- | src/rm.c | 2 | ||||
-rw-r--r-- | src/rmdir.c | 2 | ||||
-rw-r--r-- | src/shred.c | 2 | ||||
-rw-r--r-- | src/stat.c | 2 | ||||
-rw-r--r-- | src/sync.c | 2 | ||||
-rw-r--r-- | src/touch.c | 2 | ||||
-rw-r--r-- | 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } @@ -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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } @@ -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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } @@ -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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status == 0 ? EXIT_SUCCESS : EXIT_FAILURE); @@ -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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } @@ -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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } @@ -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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } @@ -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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } @@ -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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + 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 <bug-fileutils@gnu.org>.")); + printf (_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT); } exit (status); } |