From 331ab45321dd37ba72b9569c1d62e887200595f3 Mon Sep 17 00:00:00 2001 From: Tim Potter Date: Thu, 22 Jul 1999 04:47:14 +0000 Subject: Copy service name into vfs_connection_struct. (This used to be commit 19242cd44e059d90e91f1c27bfb45899ce5de26a) --- source3/smbd/service.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'source3/smbd/service.c') diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 232579a0f1..f0af82fb4e 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -548,7 +548,9 @@ connection_struct *make_connection(char *service,char *user,char *password, int pstrcpy(vconn->connectpath, conn->connectpath); pstrcpy(vconn->origpath, conn->origpath); + pstrcpy(vconn->service, service); pstrcpy(vconn->user, conn->user); + vconn->uid = conn->uid; vconn->gid = conn->gid; vconn->ngroups = conn->ngroups; -- cgit