comparison src/http/ngx_http_get_time.c @ 19:d7908993fdeb

nginx-0.0.1-2002-12-02-19:09:40 import; resume after 2 months stall
author Igor Sysoev <igor@sysoev.ru>
date Mon, 02 Dec 2002 16:09:40 +0000
parents
children 77c7629a2627
comparison
equal deleted inserted replaced
18:72ad26c77d2d 19:d7908993fdeb
1
2 #include <nginx.h>
3
4 #include <ngx_config.h>
5
6
7 ngx_http_get_time(char *buf, time_t t)
8 {
9 struct tm *tp;
10
11 tp = gmtime(&t);
12 return strftime(buf, 31, "%a, %d %b %Y %H:%M:%S GMT", tp);
13 }