1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

curl_gssapi: add a missing include of sendf.h

... to avoid build failure when GSS_C_DELEG_POLICY_FLAG is not defined.

Reported by: Paul Howarth
This commit is contained in:
Kamil Dudka 2011-08-03 18:00:07 +02:00
parent a7864c41db
commit ddf0b30ffd
2 changed files with 3 additions and 2 deletions

View File

@ -25,9 +25,10 @@
#ifdef HAVE_GSSAPI
#include "curl_gssapi.h"
#include "sendf.h"
OM_uint32 Curl_gss_init_sec_context(
const struct SessionHandle *data,
struct SessionHandle *data,
OM_uint32 * minor_status,
gss_ctx_id_t * context,
gss_name_t target_name,

View File

@ -43,7 +43,7 @@
/* Common method for using gss api */
OM_uint32 Curl_gss_init_sec_context(
const struct SessionHandle *data,
struct SessionHandle *data,
OM_uint32 * minor_status,
gss_ctx_id_t * context,
gss_name_t target_name,