1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-11 05:18:09 +03:00

Make heimdal and MIT happy when iterating through auth data.

Guenther
This commit is contained in:
Günther Deschner 2007-12-12 18:57:45 +01:00
parent c9adc07ca2
commit 507247dcbf

View File

@ -399,9 +399,9 @@ bool unwrap_pac(TALLOC_CTX *mem_ctx, DATA_BLOB *auth_data, DATA_BLOB *unwrapped_
/* check if it is a PAC */
got_auth_data_pac = unwrap_pac(mem_ctx, &auth_data_wrapped, auth_data);
data_blob_free(&auth_data_wrapped);
if (!got_auth_data_pac) {
continue;
if (got_auth_data_pac) {
return true;
}
}