Skip to content
Snippets Groups Projects
Commit 5fab5538 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

rename the curl share error enum prefix

parent f152f23a
No related branches found
No related tags found
No related merge requests found
......@@ -928,9 +928,11 @@ typedef void (*curl_unlock_function)(CURL *handle,
typedef void CURLSH;
typedef enum {
CURLSH_OK, /* all is fine */
CURLSH_BAD_OPTION, /* 1 */
CURLSH_LAST /* never use */
CURLSHE_OK, /* all is fine */
CURLSHE_BAD_OPTION, /* 1 */
CURLSHE_IN_USE, /* 2 */
CURLSHE_INVALID, /* 3 */
CURLSHE_LAST /* never use */
} CURLSHcode;
typedef enum {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment