diff options
Diffstat (limited to 'networking/httpd.c')
-rw-r--r-- | networking/httpd.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/networking/httpd.c b/networking/httpd.c index 97b04fb03..0de60ba06 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -889,8 +889,8 @@ static int sendHeaders(HttpResponseNum responseNum) | |||
889 | 889 | ||
890 | if (config->ContentLength != -1) { /* file */ | 890 | if (config->ContentLength != -1) { /* file */ |
891 | strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod)); | 891 | strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod)); |
892 | len += sprintf(buf+len, "Last-Modified: %s\r\n%s %"OFF_FMT"\r\n", | 892 | len += sprintf(buf+len, "Last-Modified: %s\r\n%s %"OFF_FMT"d\r\n", |
893 | timeStr, "Content-length:", (off_t) config->ContentLength); | 893 | timeStr, "Content-length:", config->ContentLength); |
894 | } | 894 | } |
895 | strcat(buf, "\r\n"); | 895 | strcat(buf, "\r\n"); |
896 | len += 2; | 896 | len += 2; |