summaryrefslogtreecommitdiff
path: root/quotacheck.c
diff options
context:
space:
mode:
authorTomáš Chvátal <tomas.chvatal@gmail.com>2014-12-01 14:21:06 +0100
committerJan Kara <jack@suse.cz>2014-12-02 14:21:56 +0100
commitbab3fa397dd3f6c932a272cedde79d175c667910 (patch)
tree6062cf2122f5b469bc7174abaaa29f0e8c6d9a01 /quotacheck.c
parent204620858132006a77ba8df1bff04861b058b31b (diff)
Create new autotools buildsystem
Reflect what was done before and try to mimic it Remove ChangeLog, now autogenerated for dist target Remove confusing gettext README and try to add new approach for translations [JK: Fixed build without RPC support] Signed-off-by: Tomáš Chvátal <tchvatal@suse.cz> Signed-off-by: Jan Kara <jack@suse.cz>
Diffstat (limited to 'quotacheck.c')
-rw-r--r--quotacheck.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/quotacheck.c b/quotacheck.c
index e62c3a7..3cf87e0 100644
--- a/quotacheck.c
+++ b/quotacheck.c
@@ -315,7 +315,7 @@ static void usage(void)
-a, --all check all filesystems\n\
-h, --help display this message and exit\n\
-V, --version display version information and exit\n\n"), progname);
- printf(_("Bugs to %s\n"), MY_EMAIL);
+ printf(_("Bugs to %s\n"), PACKAGE_BUGREPORT);
exit(1);
}
@@ -736,7 +736,7 @@ static int rename_files(struct mount_entry *mnt, int type)
/* Make backingup safe */
sstrncat(newfilename, "~", PATH_MAX);
if (newfilename[strlen(newfilename) - 1] != '~')
- die(8, _("Name of quota file too long. Contact %s.\n"), MY_EMAIL);
+ die(8, _("Name of quota file too long. Contact %s.\n"), PACKAGE_BUGREPORT);
if (rename(filename, newfilename) < 0) {
errstr(_("Cannot rename old quotafile %s to %s: %s\n"),
filename, newfilename, strerror(errno));