* update to 4.11.4 (python3 version) * re-enable AD-DC option * add 'samba_nice' UCI option via "config procd 'extra'" * restructure buildsteps (don't rely on waf --targets logic) * move quota option into VFS * move ACL option into AC-DC * add more admin-tools * use rpath_install for libs * fix rpath + rstrip extra: * add rpcsvc-proto package _(don't rely on nfs-utils/host for headers, rpcgen anymore)_ * add libasn1 host build _(samba4 is looking for the bins)_ Signed-off-by: Andy Walsh <andy.walsh44+github@gmail.com>
20 lines
643 B
Diff
20 lines
643 B
Diff
--- a/source3/lib/messages.c
|
|
+++ b/source3/lib/messages.c
|
|
@@ -518,7 +518,7 @@ static NTSTATUS messaging_init_internal(
|
|
return NT_STATUS_ACCESS_DENIED;
|
|
}
|
|
|
|
- priv_path = private_path("msg.sock");
|
|
+ priv_path = lock_path(talloc_tos(), "msg.sock");
|
|
if (priv_path == NULL) {
|
|
return NT_STATUS_NO_MEMORY;
|
|
}
|
|
@@ -662,7 +662,7 @@ NTSTATUS messaging_reinit(struct messagi
|
|
|
|
msg_ctx->msg_dgm_ref = messaging_dgm_ref(
|
|
msg_ctx, msg_ctx->event_ctx, &msg_ctx->id.unique_id,
|
|
- private_path("msg.sock"), lck_path,
|
|
+ lock_path(talloc_tos(), "msg.sock"), lck_path,
|
|
messaging_recv_cb, msg_ctx, &ret);
|
|
|
|
if (msg_ctx->msg_dgm_ref == NULL) {
|