Commit f2681d42 authored by Wayne Davison's avatar Wayne Davison

Fixed the %M escape, which was munging the wrong spaces.

parent 774d1c36
...@@ -517,7 +517,7 @@ static void log_formatted(enum logcode code, const char *format, const char *op, ...@@ -517,7 +517,7 @@ static void log_formatted(enum logcode code, const char *format, const char *op,
break; break;
case 'M': case 'M':
n = c = timestring(file->modtime); n = c = timestring(file->modtime);
while ((c = strchr(p, ' ')) != NULL) while ((c = strchr(c, ' ')) != NULL)
*c = '-'; *c = '-';
break; break;
case 'B': case 'B':
......
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