fix #include blockers
authorJohn Kohl <jtkohl@mit.edu>
Thu, 19 Apr 1990 11:12:57 +0000 (11:12 +0000)
committerJohn Kohl <jtkohl@mit.edu>
Thu, 19 Apr 1990 11:12:57 +0000 (11:12 +0000)
creds can't be const (passed to non-const later)
fix const on **'s

git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@505 dc483132-0cff-0310-8789-dd5450dbe970

src/lib/krb5/krb/int-proto.h

index 54b6ea2a4c3bb3bc4bf437d03b355d3e58266f66..bc8888ea8be914784ad77828753baedb8f7a62ce 100644 (file)
 
 #include <krb5/copyright.h>
 
-#ifndef __KRB5_INT_FUNC_PROTO__
-#define __KRB5_INT_FUNC_PROTO__
+#ifndef KRB5_INT_FUNC_PROTO__
+#define KRB5_INT_FUNC_PROTO__
 krb5_error_code krb5_tgtname
     PROTOTYPE((krb5_principal,
               krb5_principal,
               krb5_principal *));
 krb5_error_code krb5_get_cred_via_tgt
-    PROTOTYPE((const krb5_creds *,
+    PROTOTYPE((krb5_creds *,
               const krb5_flags,
               const krb5_enctype,
               const krb5_cksumtype,
-              const krb5_address **,
+              krb5_address * const *,
               krb5_creds * ));
 krb5_error_code krb5_walk_realm_tree
     PROTOTYPE((krb5_principal,
@@ -33,5 +33,5 @@ krb5_error_code krb5_walk_realm_tree
 krb5_error_code krb5_free_realm_tree
     PROTOTYPE((krb5_principal *));
 
-#endif /* __KRB5_INT_FUNC_PROTO__ */
+#endif /* KRB5_INT_FUNC_PROTO__ */