X-Git-Url: https://git.m6w6.name/?p=m6w6%2Fext-http;a=blobdiff_plain;f=http_cache_api.c;fp=http_cache_api.c;h=7c748cc46023c73769fc5099bce37d003aed13bf;hp=9fce65059988eebaea0606b7c462e5b7ea17e665;hb=2f39230d83bdf816dcae52c7e5a1b019347f0e7b;hpb=5773d11d8c9c28fb8b0e3389258f548fc4717892 diff --git a/http_cache_api.c b/http_cache_api.c index 9fce650..7c748cc 100644 --- a/http_cache_api.c +++ b/http_cache_api.c @@ -63,8 +63,7 @@ PHP_HTTP_API time_t _http_last_modified(const void *data_ptr, http_send_mode dat { php_stream_statbuf ssb; - switch (data_mode) - { + switch (data_mode) { case SEND_DATA: return HTTP_GET_REQUEST_TIME(); case SEND_RSRC: return php_stream_stat((php_stream *) data_ptr, &ssb) ? 0 : ssb.sb.st_mtime; default: return php_stream_stat_path((char *) data_ptr, &ssb) ? 0 : ssb.sb.st_mtime;