move unused variables inside their #if 0

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@8578 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
2000-07-08 11:56:03 +00:00
parent cb7818b432
commit 5f795e83f1
2 changed files with 36 additions and 30 deletions

View File

@@ -51,7 +51,6 @@ gss_import_sec_context (
krb5_data data;
gss_buffer_desc buffer;
krb5_keyblock keyblock;
size_t sz;
int32_t tmp;
int32_t flags;
@@ -121,6 +120,9 @@ gss_import_sec_context (
krb5_ret_int32 (sp, &ac->remote_seqnumber);
#if 0
{
size_t sz;
krb5_ret_data (sp, &data);
ac->authenticator = malloc (sizeof (*ac->authenticator));
if (ac->authenticator == NULL) {
@@ -137,6 +139,7 @@ gss_import_sec_context (
ret = GSS_S_FAILURE;
goto failure;
}
}
#endif
krb5_ret_int32 (sp, &tmp);

View File

@@ -51,7 +51,6 @@ gss_import_sec_context (
krb5_data data;
gss_buffer_desc buffer;
krb5_keyblock keyblock;
size_t sz;
int32_t tmp;
int32_t flags;
@@ -121,6 +120,9 @@ gss_import_sec_context (
krb5_ret_int32 (sp, &ac->remote_seqnumber);
#if 0
{
size_t sz;
krb5_ret_data (sp, &data);
ac->authenticator = malloc (sizeof (*ac->authenticator));
if (ac->authenticator == NULL) {
@@ -137,6 +139,7 @@ gss_import_sec_context (
ret = GSS_S_FAILURE;
goto failure;
}
}
#endif
krb5_ret_int32 (sp, &tmp);