s3-rpc_server: Force ncalrpc dir to be mode 755.
authorAndreas Schneider <asn@samba.org>
Mon, 16 May 2011 14:50:51 +0000 (16:50 +0200)
committerAndreas Schneider <asn@cryptomilk.org>
Mon, 16 May 2011 15:54:20 +0000 (17:54 +0200)
This completes aae9353ecf56323b63da66aa84d8a0a4f219d94d.

directory_create_or_exist() is not needed cause create_pipe_sock() takes
care of setting up the directory correctly.

Andrew please check!

Autobuild-User: Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date: Mon May 16 17:54:20 CEST 2011 on sn-devel-104

source3/rpc_server/rpc_server.c

index cb6fbf0b007fa3311dfac99f07f1ece6c75835b8..b46c45194b5dce567c51a9a9097f9a757851fbff 100644 (file)
@@ -267,13 +267,7 @@ bool setup_named_pipe_socket(const char *pipe_name,
                goto out;
        }
 
-       if (!directory_create_or_exist(np_dir, geteuid(), 0700)) {
-               DEBUG(0, ("Failed to create pipe directory %s - %s\n",
-                         np_dir, strerror(errno)));
-               goto out;
-       }
-
-       state->fd = create_pipe_sock(np_dir, pipe_name, 0700);
+       state->fd = create_pipe_sock(np_dir, pipe_name, 0755);
        if (state->fd == -1) {
                DEBUG(0, ("Failed to create pipe socket! [%s/%s]\n",
                          np_dir, pipe_name));
@@ -891,12 +885,6 @@ bool setup_dcerpc_ncalrpc_socket(struct tevent_context *ev_ctx,
                return false;
        }
 
-       if (!directory_create_or_exist(lp_ncalrpc_dir(), geteuid(), 0755)) {
-               DEBUG(0, ("Failed to create pipe directory %s - %s\n",
-                         lp_ncalrpc_dir(), strerror(errno)));
-               goto out;
-       }
-
        state->fd = create_pipe_sock(lp_ncalrpc_dir(), name, 0755);
        if (state->fd == -1) {
                DEBUG(0, ("Failed to create pipe socket! [%s/%s]\n",