examples: Corrected unescaped backslash in imap-store.c

This commit is contained in:
Steve Holme 2014-01-01 19:31:22 +00:00
parent 0757a9b941
commit 1f47a77b29

View File

@ -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);