svn commit: samba r15805 - in branches/SAMBA_4_0/source/scripting/ejs: .

jelmer at samba.org jelmer at samba.org
Mon May 22 16:16:49 GMT 2006


Author: jelmer
Date: 2006-05-22 16:16:48 +0000 (Mon, 22 May 2006)
New Revision: 15805

WebSVN: http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=15805

Log:
Fix incompatible type assignment. Caught by the IBM checker.

Modified:
   branches/SAMBA_4_0/source/scripting/ejs/ejsnet.c


Changeset:
Modified: branches/SAMBA_4_0/source/scripting/ejs/ejsnet.c
===================================================================
--- branches/SAMBA_4_0/source/scripting/ejs/ejsnet.c	2006-05-22 15:17:12 UTC (rev 15804)
+++ branches/SAMBA_4_0/source/scripting/ejs/ejsnet.c	2006-05-22 16:16:48 UTC (rev 15805)
@@ -111,7 +111,7 @@
 	join->in.netbios_name  = NULL;
 	join->in.join_type     = SEC_CHAN_WKSTA;
 	join->in.domain_name   = cli_credentials_get_domain(ctx->cred);
-	join->in.level         = LIBNET_JOINDOMAIN_AUTOMATIC;
+	join->in.level         = LIBNET_JOIN_AUTOMATIC;
 	join->out.error_string = NULL;
 
 	if (argc == 1 && argv[0]->type == MPR_TYPE_OBJECT) {



More information about the samba-cvs mailing list