summaryrefslogtreecommitdiff
path: root/src/util.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/util.c')
-rw-r--r--src/util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util.c b/src/util.c
index 8afb185..e8e2ad4 100644
--- a/src/util.c
+++ b/src/util.c
@@ -1431,7 +1431,7 @@ strip_leading_slashes (char *name, int strip_leading)
/* Make filenames more reasonable. */
void
-fetchname (char const *at, int strip_leading, bool maybe_quoted, char **pname,
+fetchname (char const *at, int strip_leading, char **pname,
char **ptimestr, struct timespec *pstamp)
{
char *name;
@@ -1447,7 +1447,7 @@ fetchname (char const *at, int strip_leading, bool maybe_quoted, char **pname,
if (debug & 128)
say ("fetchname %s %d\n", at, strip_leading);
- if (maybe_quoted && *at == '"')
+ if (*at == '"')
{
name = parse_c_string (at, &t);
if (! name)