diff options
author | Daniel Stenberg <daniel@haxx.se> | 2014-09-13 19:09:56 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2014-09-13 19:09:56 +0200 |
commit | fb4726d571649199de1daad642b05c101f0a56c3 (patch) | |
tree | e690890598f01973a2ad950c342f3083cbdf455b /lib | |
parent | d57d041d672d124a430eb6a7a3a254fc993bd2a2 (diff) |
formdata: removed unnecessary USE_SSLEAY use
Diffstat (limited to 'lib')
-rw-r--r-- | lib/formdata.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/lib/formdata.c b/lib/formdata.c index 3260928f6..2e76994a1 100644 --- a/lib/formdata.c +++ b/lib/formdata.c @@ -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> @@ -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)) |