1krb5_principal_compare_any_realm - Compare two principals ignoring realm components. 2====================================================================================== 3 4.. 5 6.. c:function:: krb5_boolean krb5_principal_compare_any_realm(krb5_context context, krb5_const_principal princ1, krb5_const_principal princ2) 7 8.. 9 10 11:param: 12 13 **[in]** **context** - Library context 14 15 **[in]** **princ1** - First principal 16 17 **[in]** **princ2** - Second principal 18 19 20.. 21 22 23:retval: 24 - TRUE if the principals are the same; FALSE otherwise 25 26 27.. 28 29 30 31 32 33 34 35Similar to krb5_principal_compare(), but do not compare the realm components of the principals. 36 37 38 39 40 41 42 43 44 45 46.. 47 48 49 50 51 52