curl-library
Warning in strerror.c
From: Joe Halpin <j.p.h_at_comcast.net>
Date: Fri, 14 May 2004 12:03:34 -0500
Date: Fri, 14 May 2004 12:03:34 -0500
This fixes a warning I'm getting in strerror.c in my builds.
Index: lib/strerror.c
===================================================================
RCS file: /repository/curl/lib/strerror.c,v
retrieving revision 1.8
diff -u -r1.8 strerror.c
--- lib/strerror.c 6 May 2004 10:49:40 -0000 1.8
+++ lib/strerror.c 14 May 2004 17:01:51 -0000
@@ -295,6 +295,9 @@
case CURLSHE_INVALID:
return "invalid share handle";
+ case CURLSHE_NOMEM:
+ return "out of memory";
+
case CURLSHE_LAST:
break;
}
Received on 2004-05-14