From: Steve Holme Date: Wed, 1 Jan 2014 19:31:22 +0000 (+0000) Subject: examples: Corrected unescaped backslash in imap-store.c X-Git-Tag: curl-7_35_0~148 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f47a77b2980ba92c559b967a7bdecf498f2c346;p=thirdparty%2Fcurl.git examples: Corrected unescaped backslash in imap-store.c --- diff --git a/docs/examples/imap-store.c b/docs/examples/imap-store.c index 7d5f44a6a9..ed38db5c8e 100644 --- a/docs/examples/imap-store.c +++ b/docs/examples/imap-store.c @@ -44,7 +44,7 @@ int main(void) /* Set the STORE command with the Deleted flag for message 1. Note that * you can use the STORE command to set other flags such as Seen, Answered, * Flagged, Draft and Recent. */ - curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "STORE 1 +Flags \Deleted"); + curl_easy_setopt(curl, CURLOPT_CUSTOMREQUEST, "STORE 1 +Flags \\Deleted"); /* Perform the custom request */ res = curl_easy_perform(curl);