From: Kevin Wasserman Date: Tue, 14 Jun 2011 13:26:14 +0000 (-0400) Subject: Explicitly include stdio.h in util_cred.c X-Git-Tag: tr-beta1~106^2~23 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=moonshot.git;a=commitdiff_plain;h=c9d5774e4352bc80ce5529acef5704d744522b46 Explicitly include stdio.h in util_cred.c stdio.h is required for BUFSIZ. It is implicitly included by gssapiP_eap.h via freeradius but that dependency will be removed for windows. --- diff --git a/moonshot/mech_eap/util_cred.c b/moonshot/mech_eap/util_cred.c index 28cb76c..c468f97 100644 --- a/moonshot/mech_eap/util_cred.c +++ b/moonshot/mech_eap/util_cred.c @@ -37,6 +37,8 @@ #include "gssapiP_eap.h" #include +#include // for BUFSIZ + OM_uint32 gssEapAllocCred(OM_uint32 *minor, gss_cred_id_t *pCred)