Sign in
nginx
/
nginx
/
42feecbdb694e114e034f0be67d19bba4165c363
/
.
/
src
/
http
/
ngx_http_get_time.c
blob: d03e8b16f7f785c7d5d0ecb17ef66a48639ee833 [
file
] [
log
] [
blame
]
#include
<nginx.h>
#include
<ngx_config.h>
#include
<ngx_types.h>
ngx_http_get_time
(
char
*
buf
,
time_t
t
)
{
struct
tm
*
tp
;
tp
=
gmtime
(&
t
);
return
strftime
(
buf
,
30
,
"%a, %d %b %Y %H:%M:%S GMT"
,
tp
);
}