mime_download(): missed CC -> CCC in one place.
authorWilfried Goesgens <dothebart@citadel.org>
Mon, 25 Feb 2013 19:32:52 +0000 (20:32 +0100)
committerWilfried Goesgens <dothebart@citadel.org>
Mon, 25 Feb 2013 19:32:52 +0000 (20:32 +0100)
citadel/msgbase.c

index a125d01e36d9bed841a1732550c5c529c2a037b3..089d50b23edee2a9d5b6e8a603cb26f88a3c65cd 100644 (file)
@@ -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));