]> git.ipfire.org Git - thirdparty/apache/httpd.git/commitdiff
* server/log.c (log_ctime): Fix syntax error in r1931452 trunk trunk
authorJoe Orton <jorton@apache.org>
Wed, 21 Jan 2026 11:09:55 +0000 (11:09 +0000)
committerJoe Orton <jorton@apache.org>
Wed, 21 Jan 2026 11:09:55 +0000 (11:09 +0000)
  (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

server/log.c

index d5236f45f8674e53a8448bcdf662e7a335f04324..67dc9aad8ab64a6bf77802898028ae2dc7f94a6e 100644 (file)
@@ -585,7 +585,7 @@ static int log_ctime(const ap_errorlog_info *info, const char *arg,
         if (arg[0] == 'u' && !arg[1]) { /* no ErrorLogFormat (fast path) */
             option |= AP_CTIME_OPTION_USEC;
         }
-        else if (arg[0] == 'm' && !arg[1])   /* no ErrorLogFormat (fast path) - msec */
+        else if (arg[0] == 'm' && !arg[1]) { /* no ErrorLogFormat (fast path) - msec */
             option |= AP_CTIME_OPTION_MSEC;
         }
         else if (!ap_strchr_c(arg, '%')) { /* special "%{mcuz}t" formats */