diff options
Diffstat (limited to 'docs/examples/imap-store.c')
-rw-r--r-- | docs/examples/imap-store.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/examples/imap-store.c b/docs/examples/imap-store.c index 7d5f44a6a..ed38db5c8 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); |