aboutsummaryrefslogtreecommitdiff
path: root/docs/examples/imap-store.c
diff options
context:
space:
mode:
authorSteve Holme <steve_holme@hotmail.com>2014-01-01 19:31:22 +0000
committerSteve Holme <steve_holme@hotmail.com>2014-01-01 19:31:41 +0000
commit1f47a77b2980ba92c559b967a7bdecf498f2c346 (patch)
treed3e0ff71581701fefd6e87b89b3f712d73af7ef9 /docs/examples/imap-store.c
parent0757a9b941f2f14622a9c3ee345cd967dc2521ba (diff)
examples: Corrected unescaped backslash in imap-store.c
Diffstat (limited to 'docs/examples/imap-store.c')
-rw-r--r--docs/examples/imap-store.c2
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);