1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

security.c: Update the #include statements after the rewrite.

This commit is contained in:
Julien Chaffraix 2010-09-12 17:22:04 -07:00 committed by Daniel Stenberg
parent 562d40e671
commit 31d59fb2cc

View File

@ -46,10 +46,7 @@
#ifndef CURL_DISABLE_FTP #ifndef CURL_DISABLE_FTP
#if defined(HAVE_KRB4) || defined(HAVE_GSSAPI) #if defined(HAVE_KRB4) || defined(HAVE_GSSAPI)
#define _MPRINTF_REPLACE /* we want curl-functions instead of native ones */ #include <stdarg.h>
#include <curl/mprintf.h>
#include <stdlib.h>
#include <string.h> #include <string.h>
#ifdef HAVE_NETDB_H #ifdef HAVE_NETDB_H
@ -61,11 +58,11 @@
#endif #endif
#include "urldata.h" #include "urldata.h"
#include "krb4.h"
#include "curl_base64.h" #include "curl_base64.h"
#include "sendf.h"
#include "ftp.h"
#include "curl_memory.h" #include "curl_memory.h"
#include "krb4.h"
#include "ftp.h"
#include "sendf.h"
#include "rawstr.h" #include "rawstr.h"
/* The last #include file should be: */ /* The last #include file should be: */