From fe4ad631ada6d1c97bd16abf3ed39f6b25a0c6b6 Mon Sep 17 00:00:00 2001 From: Wilfried Goesgens Date: Mon, 25 Feb 2013 20:32:52 +0100 Subject: [PATCH] mime_download(): missed CC -> CCC in one place. --- citadel/msgbase.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/citadel/msgbase.c b/citadel/msgbase.c index a125d01e3..089d50b23 100644 --- a/citadel/msgbase.c +++ b/citadel/msgbase.c @@ -1147,7 +1147,7 @@ void mime_download(char *name, char *filename, char *partnum, char *disp, return; } - rv = fwrite(content, length, 1, CC->download_fp); + rv = fwrite(content, length, 1, CCC->download_fp); if (rv <= 0) { MSG_syslog(LOG_EMERG, "mime_download(): Couldn't write: %s\n", strerror(errno)); -- 2.30.2