From: Daniel Stenberg Date: Sat, 13 Sep 2014 17:09:56 +0000 (+0200) Subject: formdata: removed unnecessary USE_SSLEAY use X-Git-Tag: curl-7_39_0~214 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=fb4726d571649199de1daad642b05c101f0a56c3;p=thirdparty%2Fcurl.git formdata: removed unnecessary USE_SSLEAY use --- diff --git a/lib/formdata.c b/lib/formdata.c index 3260928f62..2e76994a12 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -24,7 +24,7 @@ #include -#if !defined(CURL_DISABLE_HTTP) || defined(USE_SSLEAY) +#ifndef CURL_DISABLE_HTTP #if defined(HAVE_LIBGEN_H) && defined(HAVE_BASENAME) #include @@ -43,10 +43,6 @@ /* 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))