rename to avoid shadowing

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@15446 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2005-06-16 20:25:20 +00:00
parent 70aae422eb
commit c3579d1f6c
2 changed files with 6 additions and 6 deletions

View File

@@ -492,11 +492,11 @@ init_fcc (krb5_context context,
goto out;
}
while(length > 0) {
int16_t tag, data_len;
int16_t dtag, data_len;
int i;
int8_t dummy;
ret = krb5_ret_int16 (sp, &tag);
ret = krb5_ret_int16 (sp, &dtag);
if(ret) {
krb5_clear_error_string(context);
ret = KRB5_CC_FORMAT;
@@ -508,7 +508,7 @@ init_fcc (krb5_context context,
ret = KRB5_CC_FORMAT;
goto out;
}
switch (tag) {
switch (dtag) {
case FCC_TAG_DELTATIME :
ret = krb5_ret_int32 (sp, &context->kdc_sec_offset);
if(ret) {