Skip to content

Commit ac97d73

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 4a60295 commit ac97d73

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/log.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -664,7 +664,7 @@ static int log_ctime(const ap_errorlog_info *info, const char *arg,
664664
if (arg[0] == 'u' && !arg[1]) { /* no ErrorLogFormat (fast path) */
665665
option |= AP_CTIME_OPTION_USEC;
666666
}
667-
else if (arg[0] == 'm' && !arg[1]) /* no ErrorLogFormat (fast path) - msec */
667+
else if (arg[0] == 'm' && !arg[1]) { /* no ErrorLogFormat (fast path) - msec */
668668
option |= AP_CTIME_OPTION_MSEC;
669669
}
670670
else if (!ap_strchr_c(arg, '%')) { /* special "%{mcuz}t" formats */

0 commit comments

Comments
 (0)