diff options
author | Julien Chaffraix <julien.chaffraix@gmail.com> | 2010-09-12 17:22:04 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2010-09-22 23:34:36 +0200 |
commit | 31d59fb2cc05ad232c2e5a39eba7ece71d9c8533 (patch) | |
tree | 9a9fd1023595be71fd4fce695cb06e172d9bdb9e /lib/security.c | |
parent | 562d40e671c2290aed36de5afd1fd2954619d900 (diff) | |
download | curl-31d59fb2cc05ad232c2e5a39eba7ece71d9c8533.tar.gz |
security.c: Update the #include statements after the rewrite.
Diffstat (limited to 'lib/security.c')
-rw-r--r-- | lib/security.c | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/lib/security.c b/lib/security.c index 6e1797cf1..2eeaa3196 100644 --- a/lib/security.c +++ b/lib/security.c @@ -46,10 +46,7 @@ #ifndef CURL_DISABLE_FTP #if defined(HAVE_KRB4) || defined(HAVE_GSSAPI) -#define _MPRINTF_REPLACE /* we want curl-functions instead of native ones */ -#include <curl/mprintf.h> - -#include <stdlib.h> +#include <stdarg.h> #include <string.h> #ifdef HAVE_NETDB_H @@ -61,11 +58,11 @@ #endif #include "urldata.h" -#include "krb4.h" #include "curl_base64.h" -#include "sendf.h" -#include "ftp.h" #include "curl_memory.h" +#include "krb4.h" +#include "ftp.h" +#include "sendf.h" #include "rawstr.h" /* The last #include file should be: */ |