Skip to content

Commit

Permalink
curl_gssapi: add a missing include of sendf.h
Browse files Browse the repository at this point in the history
... to avoid build failure when GSS_C_DELEG_POLICY_FLAG is not defined.

Reported by: Paul Howarth
  • Loading branch information
kdudka committed Aug 3, 2011
1 parent a7864c4 commit ddf0b30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion lib/curl_gssapi.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion lib/curl_gssapi.h
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

0 comments on commit ddf0b30

Please sign in to comment.