From d1ecb701ab85aa95d020825a3aae5bbe9aeac59e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Thu, 16 Jun 2005 20:34:03 +0000 Subject: [PATCH] give kret in GSSAPI_KRB5_INIT a more unique name git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15450 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/gssapi/gssapi_locl.h | 6 +++--- lib/gssapi/krb5/gssapi_locl.h | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/lib/gssapi/gssapi_locl.h b/lib/gssapi/gssapi_locl.h index 54c6176f3..84304d0f9 100644 --- a/lib/gssapi/gssapi_locl.h +++ b/lib/gssapi/gssapi_locl.h @@ -101,9 +101,9 @@ struct gssapi_thr_context { krb5_error_code gssapi_krb5_init (void); #define GSSAPI_KRB5_INIT() do { \ - krb5_error_code kret; \ - if((kret = gssapi_krb5_init ()) != 0) { \ - *minor_status = kret; \ + krb5_error_code kret_gss_init; \ + if((kret_gss_init = gssapi_krb5_init ()) != 0) { \ + *minor_status = kret_gss_init; \ return GSS_S_FAILURE; \ } \ } while (0) diff --git a/lib/gssapi/krb5/gssapi_locl.h b/lib/gssapi/krb5/gssapi_locl.h index 54c6176f3..84304d0f9 100644 --- a/lib/gssapi/krb5/gssapi_locl.h +++ b/lib/gssapi/krb5/gssapi_locl.h @@ -101,9 +101,9 @@ struct gssapi_thr_context { krb5_error_code gssapi_krb5_init (void); #define GSSAPI_KRB5_INIT() do { \ - krb5_error_code kret; \ - if((kret = gssapi_krb5_init ()) != 0) { \ - *minor_status = kret; \ + krb5_error_code kret_gss_init; \ + if((kret_gss_init = gssapi_krb5_init ()) != 0) { \ + *minor_status = kret_gss_init; \ return GSS_S_FAILURE; \ } \ } while (0)