summaryrefslogtreecommitdiff
path: root/src/realpath.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/realpath.c')
-rw-r--r--src/realpath.c13
1 files changed, 6 insertions, 7 deletions
diff --git a/src/realpath.c b/src/realpath.c
index 9f8754de6..febf956d9 100644
--- a/src/realpath.c
+++ b/src/realpath.c
@@ -24,7 +24,6 @@
#include "system.h"
#include "canonicalize.h"
#include "error.h"
-#include "quote.h"
#include "relpath.h"
/* The official name of this program (e.g., no 'g' prefix). */
@@ -143,7 +142,7 @@ isdir (const char *path)
{
struct stat sb;
if (stat (path, &sb) != 0)
- error (EXIT_FAILURE, errno, _("cannot stat %s"), quote (path));
+ error (EXIT_FAILURE, errno, _("cannot stat %s"), quoteaf (path));
return S_ISDIR (sb.st_mode);
}
@@ -154,7 +153,7 @@ process_path (const char *fname, int can_mode)
if (!can_fname)
{
if (verbose)
- error (0, errno, "%s", quote (fname));
+ error (0, errno, "%s", quotef (fname));
return false;
}
@@ -246,9 +245,9 @@ main (int argc, char **argv)
{
can_relative_to = realpath_canon (relative_to, can_mode);
if (!can_relative_to)
- error (EXIT_FAILURE, errno, "%s", quote (relative_to));
+ error (EXIT_FAILURE, errno, "%s", quotef (relative_to));
if (need_dir && !isdir (can_relative_to))
- error (EXIT_FAILURE, ENOTDIR, "%s", quote (relative_to));
+ error (EXIT_FAILURE, ENOTDIR, "%s", quotef (relative_to));
}
if (relative_base == relative_to)
can_relative_base = can_relative_to;
@@ -256,9 +255,9 @@ main (int argc, char **argv)
{
char *base = realpath_canon (relative_base, can_mode);
if (!base)
- error (EXIT_FAILURE, errno, "%s", quote (relative_base));
+ error (EXIT_FAILURE, errno, "%s", quotef (relative_base));
if (need_dir && !isdir (base))
- error (EXIT_FAILURE, ENOTDIR, "%s", quote (relative_base));
+ error (EXIT_FAILURE, ENOTDIR, "%s", quotef (relative_base));
/* --relative-to is a no-op if it does not have --relative-base
as a prefix */
if (path_prefix (base, can_relative_to))