From 44da3349f03e6c6f33024e6f532f624dad700403 Mon Sep 17 00:00:00 2001 From: Art Cancro Date: Tue, 12 Apr 2016 16:49:45 -0400 Subject: [PATCH] Updated some comments. --- citadel/modules/image/serv_image.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/citadel/modules/image/serv_image.c b/citadel/modules/image/serv_image.c index ff7d2e8e8..dc7c0b14e 100644 --- a/citadel/modules/image/serv_image.c +++ b/citadel/modules/image/serv_image.c @@ -42,7 +42,7 @@ void cmd_dlui(char *cmdbuf) struct CtdlMessage *msg = CtdlFetchMessage(ruser.msgnum_pic, 1, 1); if (msg != NULL) { - // 600 402132|-1||image/gif| + // 600 402132|-1||image/gif| FIXME update the protocol doc on the web site safestrncpy(CC->download_desired_section, "1", sizeof CC->download_desired_section); CtdlOutputPreLoadedMsg(msg, MT_SPEW_SECTION, HEADERS_NONE, 1, 0, 0); CM_Free(msg); @@ -76,6 +76,7 @@ void import_one_userpic_file(char *username, long usernum, char *path) fread(unencoded_data, data_length, 1, fp); char *encoded_data = malloc((data_length * 2) + 100); if (encoded_data) { + // FIXME try to guess the content-type based on the filename, don't assume GIF sprintf(encoded_data, "Content-type: image/gif\nContent-transfer-encoding: base64\n\n"); CtdlEncodeBase64(&encoded_data[strlen(encoded_data)], unencoded_data, data_length, 1); -- 2.30.2