diff options
author | Igor Sysoev <igor@sysoev.ru> | 2003-07-20 21:15:59 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2003-07-20 21:15:59 +0000 |
commit | 890fc9659609396f9df4dff47a2be77cd652fe55 (patch) | |
tree | b6694fd45d26bc9607ceb41608619dbbf4ccb23c /src/http/ngx_http_get_time.c | |
parent | 8e1fbe61b69562d838aafda8d75798993f022d4a (diff) | |
download | nginx-890fc9659609396f9df4dff47a2be77cd652fe55.tar.gz nginx-890fc9659609396f9df4dff47a2be77cd652fe55.zip |
nginx-0.0.1-2003-07-21-01:15:59 import
Diffstat (limited to 'src/http/ngx_http_get_time.c')
-rw-r--r-- | src/http/ngx_http_get_time.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_get_time.c b/src/http/ngx_http_get_time.c index 45df008d1..971914e4d 100644 --- a/src/http/ngx_http_get_time.c +++ b/src/http/ngx_http_get_time.c @@ -5,7 +5,7 @@ size_t ngx_http_get_time(char *buf, time_t t) { - struct tm *tp; + struct tm *tp; tp = gmtime(&t); return strftime(buf, 30, "%a, %d %b %Y %H:%M:%S GMT", tp); |