From 1f47a77b2980ba92c559b967a7bdecf498f2c346 Mon Sep 17 00:00:00 2001 From: Steve Holme Date: Wed, 1 Jan 2014 19:31:22 +0000 Subject: examples: Corrected unescaped backslash in imap-store.c --- docs/examples/imap-store.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/examples') 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); -- cgit v1.2.3