mirror of
https://github.com/curl/curl.git
synced 2026-07-26 01:27:15 +03:00
examples: Corrected unescaped backslash in imap-store.c
This commit is contained in:
parent
0757a9b941
commit
1f47a77b29
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue