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 f3fe49cae..bbb2dfe7f 100644 --- a/networking/httpd.c +++ b/networking/httpd.c | |||
@@ -919,8 +919,8 @@ static int sendHeaders(HttpResponseNum responseNum) | |||
919 | 919 | ||
920 | if (config->ContentLength != -1) { /* file */ | 920 | if (config->ContentLength != -1) { /* file */ |
921 | strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod)); | 921 | strftime(timeStr, sizeof(timeStr), RFC1123FMT, gmtime(&config->last_mod)); |
922 | len += sprintf(buf+len, "Last-Modified: %s\r\n%s "FILEOFF_FMT"\r\n", | 922 | len += sprintf(buf+len, "Last-Modified: %s\r\n%s "OFF_FMT"\r\n", |
923 | timeStr, Content_length, (FILEOFF_TYPE) config->ContentLength); | 923 | timeStr, Content_length, (off_t) config->ContentLength); |
924 | } | 924 | } |
925 | strcat(buf, "\r\n"); | 925 | strcat(buf, "\r\n"); |
926 | len += 2; | 926 | len += 2; |