X-Git-Url: https://code.citadel.org/?a=blobdiff_plain;f=webcit%2Fdownloads.c;h=6e6c9b981b5ebf0acf8bc46dc664fc9630956acd;hb=HEAD;hp=8005d3da8e1178a3a94f9d77e572a3eef06e43a9;hpb=44bd452609c8e429d324d4205460c656dd91bd5f;p=citadel.git diff --git a/webcit/downloads.c b/webcit/downloads.c index 8005d3da8..9b7dde993 100644 --- a/webcit/downloads.c +++ b/webcit/downloads.c @@ -11,7 +11,7 @@ */ #include "webcit.h" -#include "webserver.h" + CtxType CTX_FILELIST = CTX_NONE; @@ -279,7 +279,6 @@ void download_file(void) serv_read_binary_to_http(ContentType, bytes, 0, 0); serv_puts("CLOS"); StrBuf_ServGetln(Buf); -// http_transmit_thing(ChrPtr(ContentType), 0); } else { StrBufCutLeft(Buf, 4); hprintf("HTTP/1.1 404 %s\n", ChrPtr(Buf)); @@ -415,10 +414,9 @@ void output_image(void) /* * Instead of an ugly 404, send a 1x1 transparent GIF - * when there's no such image on the server. + * when there's no such image on the server display blank */ - StrBufPrintf (Buf, "%s%s", static_dirs[0], "/webcit_icons/blank.gif"); - output_static(ChrPtr(Buf)); + output_static(NULL); FreeStrBuf(&Buf); }