From aa371571f9ed30b8a5cda22cd937c30d814dc6bc Mon Sep 17 00:00:00 2001 From: Love Hornquist Astrand Date: Mon, 29 Mar 2010 19:08:00 -0700 Subject: [PATCH] insert _FLAG into the name --- lib/krb5/init_creds_pw.c | 5 +++-- lib/krb5/krb5.h | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lib/krb5/init_creds_pw.c b/lib/krb5/init_creds_pw.c index 6af50a7ab..ec954da0c 100644 --- a/lib/krb5/init_creds_pw.c +++ b/lib/krb5/init_creds_pw.c @@ -1613,7 +1613,8 @@ krb5_init_creds_set_keyblock(krb5_context context, * @param in input data from KDC, first round it should be reset by krb5_data_zer(). * @param out reply to KDC. * @param hostinfo KDC address info, first round it can be NULL. - * @param flags status of the round, if KRB5_INIT_CREDS_STEP_CONTINUE is set, continue one more round. + * @param flags status of the round, if + * KRB5_INIT_CREDS_STEP_FLAG_CONTINUE is set, continue one more round. * * @return 0 for success, or an Kerberos 5 error code, see * krb5_get_error_message(). @@ -1816,7 +1817,7 @@ krb5_init_creds_step(krb5_context context, out->data = ctx->req_buffer.data; out->length = ctx->req_buffer.length; - *flags = KRB5_INIT_CREDS_STEP_CONTINUE; + *flags = KRB5_INIT_CREDS_STEP_FLAG_CONTINUE; return 0; out: diff --git a/lib/krb5/krb5.h b/lib/krb5/krb5.h index 49cfd8f81..ac7ac63a4 100644 --- a/lib/krb5/krb5.h +++ b/lib/krb5/krb5.h @@ -699,7 +699,7 @@ typedef struct _krb5_get_init_creds_opt krb5_get_init_creds_opt; #define KRB5_GET_INIT_CREDS_OPT_DISABLE_TRANSITED_CHECK 0x0200 /* krb5_init_creds_step flags argument */ -#define KRB5_INIT_CREDS_STEP_CONTINUE 0x0001 +#define KRB5_INIT_CREDS_STEP_FLAG_CONTINUE 0x0001 typedef struct _krb5_verify_init_creds_opt { krb5_flags flags;