]> git.kaiwu.me - nginx.git/commitdiff
Fixed format specifiers in ngx_sprintf().
authorSergey Kandaurov <pluknet@nginx.com>
Wed, 30 Mar 2016 23:34:00 +0000 (02:34 +0300)
committerSergey Kandaurov <pluknet@nginx.com>
Wed, 30 Mar 2016 23:34:00 +0000 (02:34 +0300)
src/core/ngx_inet.c
src/core/ngx_times.c

index 765bda53d990557b85ddc7ff74a31e79a9f7ed4c..a4e80ed8f75f9b941b38761c85231e1aed828edc 100644 (file)
@@ -348,7 +348,7 @@ ngx_inet6_ntop(u_char *p, u_char *text, size_t len)
             continue;
         }
 
-        dst = ngx_sprintf(dst, "%uxi", p[i] * 256 + p[i + 1]);
+        dst = ngx_sprintf(dst, "%uxd", p[i] * 256 + p[i + 1]);
 
         if (i < 14) {
             *dst++ = ':';
index 595c1224d0e0aa8ed51ac41c0bd44ba9774a8a6e..843314aba7b89642678040aeb966bfd4cec47a9c 100644 (file)
@@ -154,7 +154,7 @@ ngx_time_update(void)
 
     p2 = &cached_http_log_time[slot][0];
 
-    (void) ngx_sprintf(p2, "%02d/%s/%d:%02d:%02d:%02d %c%02d%02d",
+    (void) ngx_sprintf(p2, "%02d/%s/%d:%02d:%02d:%02d %c%02i%02i",
                        tm.ngx_tm_mday, months[tm.ngx_tm_mon - 1],
                        tm.ngx_tm_year, tm.ngx_tm_hour,
                        tm.ngx_tm_min, tm.ngx_tm_sec,
@@ -163,7 +163,7 @@ ngx_time_update(void)
 
     p3 = &cached_http_log_iso8601[slot][0];
 
-    (void) ngx_sprintf(p3, "%4d-%02d-%02dT%02d:%02d:%02d%c%02d:%02d",
+    (void) ngx_sprintf(p3, "%4d-%02d-%02dT%02d:%02d:%02d%c%02i:%02i",
                        tm.ngx_tm_year, tm.ngx_tm_mon,
                        tm.ngx_tm_mday, tm.ngx_tm_hour,
                        tm.ngx_tm_min, tm.ngx_tm_sec,