summaryrefslogtreecommitdiff
path: root/src/df.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2000-07-30 16:19:33 +0000
committerJim Meyering <jim@meyering.net>2000-07-30 16:19:33 +0000
commit222f7363788b4566d0fcd297d260840a42211c74 (patch)
treec99ad6642d091ea66aa96b0bad6cb1e86fdffffc /src/df.c
parentb53d6da640dfa6dde300fa7b157902870fb803b6 (diff)
downloadcoreutils-222f7363788b4566d0fcd297d260840a42211c74.tar.xz
Convert "`%s'" in format strings to "%s", and wrap each
corresponding argument in a `quote (...)' call.
Diffstat (limited to 'src/df.c')
-rw-r--r--src/df.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/src/df.c b/src/df.c
index 828f45681..78e05d9cf 100644
--- a/src/df.c
+++ b/src/df.c
@@ -39,6 +39,7 @@
#include "human.h"
#include "mountlist.h"
#include "path-concat.h"
+#include "quote.h"
#include "save-cwd.h"
/* The official name of this program (e.g., no `g' prefix). */
@@ -275,7 +276,7 @@ show_dev (const char *disk, const char *mount_point, const char *fstype,
if (get_fs_usage (stat_file, disk, &fsu))
{
- error (0, errno, "%s", stat_file);
+ error (0, errno, "%s", quote (stat_file));
exit_status = 1;
return;
}
@@ -627,7 +628,7 @@ show_point (const char *point, const struct stat *statp)
me->me_dev = disk_stats.st_dev;
else
{
- error (0, errno, "%s", me->me_mountdir);
+ error (0, errno, "%s", quote (me->me_mountdir));
exit_status = 1;
/* So we won't try and fail repeatedly. */
me->me_dev = (dev_t) -2;
@@ -666,7 +667,7 @@ show_point (const char *point, const struct stat *statp)
free (mp);
}
else
- error (0, errno, "%s", point);
+ error (0, errno, "%s", quote (point));
}
goto free_then_return;
@@ -872,8 +873,8 @@ main (int argc, char **argv)
if (STREQ (fs_incl->fs_name, fs_excl->fs_name))
{
error (0, 0,
- _("file system type `%s' both selected and excluded"),
- fs_incl->fs_name);
+ _("file system type %s both selected and excluded"),
+ quote (fs_incl->fs_name));
match = 1;
break;
}
@@ -894,7 +895,7 @@ main (int argc, char **argv)
{
if (stat (argv[i], &stats[i - optind]))
{
- error (0, errno, "%s", argv[i]);
+ error (0, errno, "%s", quote (argv[i]));
exit_status = 1;
argv[i] = NULL;
}