s/KRB5_PRINCIPAL_PARSE_MUST_REALM/KRB5_PRINCIPAL_PARSE_REQUIRE_REALM/

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@24233 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2009-01-11 21:40:53 +00:00
parent d31a29f9e3
commit e3e8374234
4 changed files with 7 additions and 7 deletions

View File

@@ -736,8 +736,8 @@ typedef krb5_error_code (*krb5_send_to_kdc_func)(krb5_context,
/** flags for krb5_parse_name_flags */
enum {
KRB5_PRINCIPAL_PARSE_NO_REALM = 1, /**< Reqire that there are no realm */
KRB5_PRINCIPAL_PARSE_MUST_REALM = 2, /**< Require a realm present */
KRB5_PRINCIPAL_PARSE_NO_REALM = 1, /**< Require that there are no realm */
KRB5_PRINCIPAL_PARSE_REQUIRE_REALM = 2, /**< Require a realm present */
KRB5_PRINCIPAL_PARSE_ENTERPRISE = 4 /**< Parse as a NT-ENTERPRISE name */
};