diff options
author | Andrew Bartlett <abartlet@samba.org> | 2008-09-10 14:08:40 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2008-09-10 14:08:40 +1000 |
commit | ba22de3d4fcba466d2829df47fb05c85eda2f98f (patch) | |
tree | af1a73e2784eeadf02cce37c44f03c4c6373c48b /source4/winbind | |
parent | ffc9f85bfb6fec0bd4057d6ccb6e013dd6873ced (diff) | |
download | samba-ba22de3d4fcba466d2829df47fb05c85eda2f98f.tar.gz samba-ba22de3d4fcba466d2829df47fb05c85eda2f98f.tar.bz2 samba-ba22de3d4fcba466d2829df47fb05c85eda2f98f.zip |
Return the same privilaged winbindd socket as we actually use.
Andrew Bartlett
(This used to be commit 2209787812fd9224d104f332e25d8ce64ef9ee95)
Diffstat (limited to 'source4/winbind')
-rw-r--r-- | source4/winbind/wb_samba3_cmd.c | 3 | ||||
-rw-r--r-- | source4/winbind/wb_server.c | 4 | ||||
-rw-r--r-- | source4/winbind/wb_server.h | 2 |
3 files changed, 6 insertions, 3 deletions
diff --git a/source4/winbind/wb_samba3_cmd.c b/source4/winbind/wb_samba3_cmd.c index 5ef0339ecb..c2ba55ff18 100644 --- a/source4/winbind/wb_samba3_cmd.c +++ b/source4/winbind/wb_samba3_cmd.c @@ -113,8 +113,7 @@ NTSTATUS wbsrv_samba3_netbios_name(struct wbsrv_samba3_call *s3call) NTSTATUS wbsrv_samba3_priv_pipe_dir(struct wbsrv_samba3_call *s3call) { - char *path = smbd_tmp_path(s3call, s3call->wbconn->lp_ctx, WINBINDD_SAMBA3_PRIVILEGED_SOCKET); - NT_STATUS_HAVE_NO_MEMORY(path); + char *path = s3call->wbconn->listen_socket->service->priv_socket_path; s3call->response.result = WINBINDD_OK; s3call->response.extra_data.data = path; diff --git a/source4/winbind/wb_server.c b/source4/winbind/wb_server.c index 97646f2849..d56a82ea18 100644 --- a/source4/winbind/wb_server.c +++ b/source4/winbind/wb_server.c @@ -182,7 +182,9 @@ static void winbind_task_init(struct task_server *task) /* setup the privileged samba3 socket */ listen_socket = talloc(service, struct wbsrv_listen_socket); if (!listen_socket) goto nomem; - listen_socket->socket_path = talloc_asprintf(listen_socket, "%s/%s", + listen_socket->socket_path + = service->priv_socket_path + = talloc_asprintf(listen_socket, "%s/%s", lp_winbindd_privileged_socket_directory(task->lp_ctx), WINBINDD_SAMBA3_SOCKET); if (!listen_socket->socket_path) goto nomem; diff --git a/source4/winbind/wb_server.h b/source4/winbind/wb_server.h index 5a7ba7b401..97d7d8151e 100644 --- a/source4/winbind/wb_server.h +++ b/source4/winbind/wb_server.h @@ -35,6 +35,8 @@ struct wbsrv_service { const struct dom_sid *primary_sid; struct wbsrv_domain *domains; struct idmap_context *idmap_ctx; + + const char *priv_socket_path; }; struct wbsrv_samconn { |