Some calls declared static to make gcc stop complainig about non existing prototypes
authorkouril <kouril>
Tue, 15 Aug 2006 11:34:49 +0000 (11:34 +0000)
committerkouril <kouril>
Tue, 15 Aug 2006 11:34:49 +0000 (11:34 +0000)
spnegokrb5/decapsulate.c
spnegokrb5/encapsulate.c

index 2dcb6a3..919bddc 100644 (file)
@@ -37,7 +37,7 @@
 RCSID("$Id$");
 #endif
 
-OM_uint32
+static OM_uint32
 gssapi_verify_mech_header(u_char **str,
                          size_t total_len,
                          const gss_OID mech)
index fbc1e00..f64c451 100644 (file)
@@ -33,7 +33,7 @@
 
 #include "spnegokrb5_locl.h"
 
-void
+static void
 gssapi_encap_length (size_t data_len,
                     size_t *len,
                     size_t *total_len,
@@ -48,7 +48,7 @@ gssapi_encap_length (size_t data_len,
     *total_len = 1 + len_len + *len;
 }
 
-u_char *
+static u_char *
 gssapi_mech_make_header (u_char *p,
                         size_t len,
                         const gss_OID mech)