Commit dc28c6c6 by Richard Kenner

(p{fatal,error}_with_name, perror_exec): Quote filename.

From-SVN: r10108
parent 30de452f
......@@ -4756,7 +4756,7 @@ pfatal_with_name (name)
if (errno < sys_nerr)
s = concat ("%s: ", my_strerror( errno ));
else
s = "cannot open %s";
s = "cannot open `%s'";
fatal (s, name);
}
......@@ -4769,7 +4769,7 @@ perror_with_name (name)
if (errno < sys_nerr)
s = concat ("%s: ", my_strerror( errno ));
else
s = "cannot open %s";
s = "cannot open `%s'";
error (s, name);
}
......@@ -4780,9 +4780,10 @@ perror_exec (name)
char *s;
if (errno < sys_nerr)
s = concat ("installation problem, cannot exec %s: ", my_strerror( errno ));
s = concat ("installation problem, cannot exec `%s': ",
my_strerror (errno));
else
s = "installation problem, cannot exec %s";
s = "installation problem, cannot exec `%s'";
error (s, name);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment