summaryrefslogtreecommitdiffstats
path: root/source/lib/socket/socket_unix.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2005-08-28 02:37:49 +0000
committerAndrew Tridgell <tridge@samba.org>2005-08-28 02:37:49 +0000
commit7f5663251ee5a330fce8f98c1cd28ad354e1bf04 (patch)
treef1530166a77835752344f554825bc4d8c25bbd3d /source/lib/socket/socket_unix.c
parenta4e776eb3ca1285c6823f8f42696a80100a6b0be (diff)
downloadsamba-7f5663251ee5a330fce8f98c1cd28ad354e1bf04.tar.gz
samba-7f5663251ee5a330fce8f98c1cd28ad354e1bf04.tar.xz
samba-7f5663251ee5a330fce8f98c1cd28ad354e1bf04.zip
r9705: r9685@blu: tridge | 2005-08-27 19:43:44 +1000
set the backend_name on socket_accept() too
Diffstat (limited to 'source/lib/socket/socket_unix.c')
-rw-r--r--source/lib/socket/socket_unix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/lib/socket/socket_unix.c b/source/lib/socket/socket_unix.c
index c5af48da0fa..0c65bb46fb1 100644
--- a/source/lib/socket/socket_unix.c
+++ b/source/lib/socket/socket_unix.c
@@ -200,6 +200,7 @@ static NTSTATUS unixdom_accept(struct socket_context *sock,
(*new_sock)->private_data = NULL;
(*new_sock)->ops = sock->ops;
+ (*new_sock)->backend_name = sock->backend_name;
return NT_STATUS_OK;
}