diff options
author | Daniel Stenberg <daniel@haxx.se> | 2004-05-14 11:46:35 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2004-05-14 11:46:35 +0000 |
commit | 512e54ff8514181c9ad5677ba125fdcc176eed1b (patch) | |
tree | 53738fe4d883256a0477b86df82795f8e91353f0 /lib | |
parent | a5aa569fe3b70beff90dad38a472d23b377cfadf (diff) |
added string for the new share error code
Diffstat (limited to 'lib')
-rw-r--r-- | lib/strerror.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/strerror.c b/lib/strerror.c index d5c80d1a6..3179dd694 100644 --- a/lib/strerror.c +++ b/lib/strerror.c @@ -295,6 +295,9 @@ curl_share_strerror(CURLSHcode error) case CURLSHE_INVALID: return "invalid share handle"; + case CURLSHE_NOMEM: + return "out of memory"; + case CURLSHE_LAST: break; } |