]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
include the strerror.h file without curl_ prefix
authorDaniel Stenberg <daniel@haxx.se>
Thu, 25 Mar 2004 13:42:23 +0000 (13:42 +0000)
committerDaniel Stenberg <daniel@haxx.se>
Thu, 25 Mar 2004 13:42:23 +0000 (13:42 +0000)
lib/connect.c
lib/ftp.c
lib/strerror.c

index 28783445e0c2282d2b56d3d57467c67e6bef1df6..eb003c28fc385e1313cb9541710986c960ece601 100644 (file)
@@ -87,7 +87,7 @@
 #include "urldata.h"
 #include "sendf.h"
 #include "if2ip.h"
-#include "curl_strerror.h"
+#include "strerror.h"
 #include "connect.h"
 
 /* The last #include file should be: */
index 32c159fe75ae372db7c33d24f1e982b2273b32b8..03a6ab45bb379277772bef7bc612c415d132a370 100644 (file)
--- a/lib/ftp.c
+++ b/lib/ftp.c
@@ -91,7 +91,7 @@
 #include "strequal.h"
 #include "ssluse.h"
 #include "connect.h"
-#include "curl_strerror.h"
+#include "strerror.h"
 
 #if defined(HAVE_INET_NTOA_R) && !defined(HAVE_INET_NTOA_R_DECL)
 #include "inet_ntoa_r.h"
index 5707596036e34445ac7623f2558a06a221026b0e..32ece136eb50a5f8013299286c4d1fb9c982f6c0 100644 (file)
@@ -27,7 +27,7 @@
 #include <string.h>
 #include <errno.h>
 
-#include "curl_strerror.h"
+#include "strerror.h"
 
 #define _MPRINTF_REPLACE /* use our functions only */
 #include <curl/mprintf.h>