Home
last modified time | relevance | path

Searched refs:timz (Results 1 – 3 of 3) sorted by relevance

/mirbsd/src/usr.sbin/httpd/src/modules/standard/
Dmod_log_config.c426 int timz; in log_request_time() local
430 t = ap_get_gmtoff(&timz); in log_request_time()
436 char sign = (timz < 0 ? '-' : '+'); in log_request_time()
438 if (timz < 0) { in log_request_time()
439 timz = -timz; in log_request_time()
444 sign, timz / 60, timz % 60); in log_request_time()
Dmod_rewrite.c3363 int timz; in current_logtime() local
3368 t = ap_get_gmtoff(&timz); in current_logtime()
3369 sign = (timz < 0 ? '-' : '+'); in current_logtime()
3370 if (timz < 0) { in current_logtime()
3371 timz = -timz; in current_logtime()
3376 sign, timz/60, timz%60); in current_logtime()
/mirbsd/src/usr.sbin/httpd/src/modules/ssl/
Dssl_engine_log.c192 int timz; in ssl_log() local
231 t = ap_get_gmtoff(&timz); in ssl_log()