blob: 5885df00b69d0d36e39941aea0dc4ec2b1cb0e52 [file] [log] [blame]
#include <nginx.h>
#include <ngx_config.h>
ngx_http_get_time(char *buf, time_t t)
{
struct tm *tp;
tp = gmtime(&t);
return strftime(buf, 31, "%a, %d %b %Y %H:%M:%S GMT", tp);
}