From dc791c8fcfb8f61fe0d0a14307a6a6cf999a13b7 Mon Sep 17 00:00:00 2001 From: Luke Howard Date: Sat, 18 May 2019 13:57:43 +1000 Subject: [PATCH] krb5: remove duplicate KRB5_ANON_MATCH_xxx defines Commit bdcd7d2f moved the KRB5_ANON_MATCH_xxx preprocessor symbols to krb5.h, but did not remove the originals from krb5_locl.h. This commit removes them. --- lib/krb5/krb5_locl.h | 5 ----- 1 file changed, 5 deletions(-) diff --git a/lib/krb5/krb5_locl.h b/lib/krb5/krb5_locl.h index e1439ff02..809a7e3b3 100644 --- a/lib/krb5/krb5_locl.h +++ b/lib/krb5/krb5_locl.h @@ -403,9 +403,4 @@ struct krb5_plugin_data { krb5_get_instance_func_t get_instance; }; -/* _krb5_principal_is_anonymous() */ -#define KRB5_ANON_MATCH_AUTHENTICATED 1 /* authenticated with anon flag */ -#define KRB5_ANON_MATCH_UNAUTHENTICATED 2 /* anonymous PKINIT */ -#define KRB5_ANON_MATCH_ANY ( KRB5_ANON_MATCH_AUTHENTICATED | KRB5_ANON_MATCH_UNAUTHENTICATED ) - #endif /* __KRB5_LOCL_H__ */