1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-24 21:34:56 +03:00

r2119: Noticed by jra:

Clean up use of unitilaised variable.

Andrew Bartlett
This commit is contained in:
Andrew Bartlett 2004-08-31 02:57:49 +00:00 committed by Gerald (Jerry) Carter
parent a86e629a39
commit e8d0246882

View File

@ -287,15 +287,9 @@ static NTSTATUS gensec_spnego_client_negTokenInit(struct gensec_security *gensec
{
DATA_BLOB null_data_blob = data_blob(NULL,0);
NTSTATUS nt_status;
int num_ops;
const char **mechTypes = NULL;
DATA_BLOB unwrapped_out = data_blob(NULL,0);
if (num_ops < 1) {
DEBUG(1, ("no GENSEC backends available\n"));
return NT_STATUS_INVALID_PARAMETER;
}
mechTypes = gensec_security_oids(out_mem_ctx, OID_SPNEGO);
if (!mechTypes) {