svn commit: samba r3208 - in branches/SAMBA_4_0/source/rpc_server: .

tridge at samba.org tridge at samba.org
Mon Oct 25 09:41:24 GMT 2004


Author: tridge
Date: 2004-10-25 09:41:24 +0000 (Mon, 25 Oct 2004)
New Revision: 3208

WebSVN: http://websvn.samba.org/websvn/changeset.php?rep=samba&path=/branches/SAMBA_4_0/source/rpc_server&rev=3208&nolog=1

Log:
fixed permissions of ncalrpc directory creation

Modified:
   branches/SAMBA_4_0/source/rpc_server/dcerpc_sock.c


Changeset:
Modified: branches/SAMBA_4_0/source/rpc_server/dcerpc_sock.c
===================================================================
--- branches/SAMBA_4_0/source/rpc_server/dcerpc_sock.c	2004-10-25 07:58:47 UTC (rev 3207)
+++ branches/SAMBA_4_0/source/rpc_server/dcerpc_sock.c	2004-10-25 09:41:24 UTC (rev 3208)
@@ -198,7 +198,7 @@
 
 	/* Make sure the directory for NCALRPC exists */
 	if (!directory_exist(lp_ncalrpc_dir(), NULL)) {
-		mkdir(lp_ncalrpc_dir(), 700);
+		mkdir(lp_ncalrpc_dir(), S_IWUSR | S_IRUSR | S_IXUSR);
 	}
 
 	for (e=dce_ctx->endpoint_list;e;e=e->next) {



More information about the samba-cvs mailing list