]> granicus.if.org Git - curl/commitdiff
formdata: removed unnecessary USE_SSLEAY use
authorDaniel Stenberg <daniel@haxx.se>
Sat, 13 Sep 2014 17:09:56 +0000 (19:09 +0200)
committerDaniel Stenberg <daniel@haxx.se>
Sat, 13 Sep 2014 17:09:56 +0000 (19:09 +0200)
lib/formdata.c

index 3260928f62c11997455dec58ba8ba57d4ddeb092..2e76994a12c61e32c04238447c408ef08da96a2d 100644 (file)
@@ -24,7 +24,7 @@
 
 #include <curl/curl.h>
 
-#if !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY)
+#ifndef CURL_DISABLE_HTTP
 
 #if defined(HAVE_LIBGEN_H) && defined(HAVE_BASENAME)
 #include <libgen.h>
 /* The last #include file should be: */
 #include "memdebug.h"
 
-#endif  /* !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY) */
-
-#ifndef CURL_DISABLE_HTTP
-
 #ifndef HAVE_BASENAME
 static char *Curl_basename(char *path);
 #define basename(x)  Curl_basename((x))