Explicitly include stdio.h in util_cred.c
authorKevin Wasserman <kevin.wasserman@painless-security.com>
Tue, 14 Jun 2011 13:26:14 +0000 (09:26 -0400)
committerSam Hartman <hartmans@debian.org>
Fri, 1 Jul 2011 10:17:18 +0000 (06:17 -0400)
stdio.h is required for BUFSIZ.  It is implicitly included by gssapiP_eap.h via freeradius but that dependency will be removed for windows.

moonshot/mech_eap/util_cred.c

index 28cb76c..c468f97 100644 (file)
@@ -37,6 +37,8 @@
 #include "gssapiP_eap.h"
 
 #include <pwd.h>
+#include <stdio.h> // for BUFSIZ
+
 
 OM_uint32
 gssEapAllocCred(OM_uint32 *minor, gss_cred_id_t *pCred)