summaryrefslogtreecommitdiff
path: root/lib/mime.c
diff options
context:
space:
mode:
authorErik Stenlund <erikstenlund@protonmail.com>2021-10-19 22:56:13 +0200
committerDaniel Stenberg <daniel@haxx.se>2021-10-20 00:11:08 +0200
commita24e8959125335000cdebb0152fc57d09838da44 (patch)
treec660967d193d66f1b6f2296c649d010a81b17f29 /lib/mime.c
parent54aa9c48b20387f763a24f6000583cab5a44d110 (diff)
downloadcurl-a24e8959125335000cdebb0152fc57d09838da44.tar.gz
mime: mention CURL_DISABLE_MIME in comment
CURL_DISABLE_MIME is not mentioned in the comment describing the if else preprocessor directive. Closes #7882
Diffstat (limited to 'lib/mime.c')
-rw-r--r--lib/mime.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/mime.c b/lib/mime.c
index 110b740ff..f40cc1a61 100644
--- a/lib/mime.c
+++ b/lib/mime.c
@@ -1955,7 +1955,8 @@ void Curl_mime_unpause(curl_mimepart *part)
}
-#else /* !CURL_DISABLE_HTTP || !CURL_DISABLE_SMTP || !CURL_DISABLE_IMAP */
+#else /* !CURL_DISABLE_HTTP && !CURL_DISABLE_MIME ||
+ !CURL_DISABLE_SMTP || !CURL_DISABLE_IMAP */
/* Mime not compiled in: define stubs for externally-referenced functions. */
curl_mime *curl_mime_init(CURL *easy)