diff options
author | Steve Holme <steve_holme@hotmail.com> | 2013-08-26 10:14:16 +0100 |
---|---|---|
committer | Steve Holme <steve_holme@hotmail.com> | 2013-08-26 10:14:16 +0100 |
commit | 7f41eab39524ee73ead3af815234b98dfa7904dc (patch) | |
tree | 70f11618ea6a0b38940a2e4f82214487be9ecfec /lib | |
parent | 0192ad65bb35597bfcc5635a9cbb46c02a30a07c (diff) | |
download | curl-7f41eab39524ee73ead3af815234b98dfa7904dc.tar.gz |
security.h: Fixed compilation warning
ISO C forbids forward references to 'enum' types
Diffstat (limited to 'lib')
-rw-r--r-- | lib/security.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/security.h b/lib/security.h index 4f24477c9..82151e9c7 100644 --- a/lib/security.h +++ b/lib/security.h @@ -38,13 +38,13 @@ struct Curl_sec_client_mech { #define AUTH_CONTINUE 1 #define AUTH_ERROR 2 +#ifdef HAVE_GSSAPI int Curl_sec_read_msg (struct connectdata *conn, char *, enum protection_level); void Curl_sec_end (struct connectdata *); CURLcode Curl_sec_login (struct connectdata *); int Curl_sec_request_prot (struct connectdata *conn, const char *level); -#ifdef HAVE_GSSAPI extern struct Curl_sec_client_mech Curl_krb5_client_mech; #endif |