From 236628582f92ec9801ef7836a9db41a4d9fac52d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 17 Jun 2005 05:34:43 +0000 Subject: [PATCH] rename variable password to avoid shadowing git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15487 ec53bebd-3082-4978-b11e-865c3cabbd6b --- kdc/string2key.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/kdc/string2key.c b/kdc/string2key.c index 1c1951b20..34ba916f9 100644 --- a/kdc/string2key.c +++ b/kdc/string2key.c @@ -70,14 +70,14 @@ usage(int status) static void tokey(krb5_context context, krb5_enctype enctype, - const char *password, + const char *pw, krb5_salt salt, const char *label) { int i; krb5_keyblock key; char *e; - krb5_string_to_key_salt(context, enctype, password, salt, &key); + krb5_string_to_key_salt(context, enctype, pw, salt, &key); krb5_enctype_to_string(context, enctype, &e); printf(label, e); printf(": ");