Skip to content

Commit c68a031

Browse files
committed
* server/log.c (log_ctime): Fix syntax error in r1931452
(added by me when tweaking whitespace, not from the PR author). git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1931453 13f79535-47bb-0310-9956-ffa450edef68
1 parent d565275 commit c68a031

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

server/log.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ static int log_ctime(const ap_errorlog_info *info, const char *arg,
585585
if (arg[0] == 'u' && !arg[1]) { /* no ErrorLogFormat (fast path) */
586586
option |= AP_CTIME_OPTION_USEC;
587587
}
588-
else if (arg[0] == 'm' && !arg[1]) /* no ErrorLogFormat (fast path) - msec */
588+
else if (arg[0] == 'm' && !arg[1]) { /* no ErrorLogFormat (fast path) - msec */
589589
option |= AP_CTIME_OPTION_MSEC;
590590
}
591591
else if (!ap_strchr_c(arg, '%')) { /* special "%{mcuz}t" formats */

0 commit comments

Comments
 (0)