diff options
author | Jeremy Allison <jra@samba.org> | 2001-03-13 00:31:07 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2001-03-13 00:31:07 +0000 |
commit | d3ec09326b27dd00b1f67a7ce48bc9817a313735 (patch) | |
tree | acf925081e3580efb83a73163c54c1ea3b954656 /source3/smbd | |
parent | ea35aae3bfad9c73a6768abcd76726b26b6c4f9a (diff) | |
download | samba-d3ec09326b27dd00b1f67a7ce48bc9817a313735.tar.gz samba-d3ec09326b27dd00b1f67a7ce48bc9817a313735.tar.bz2 samba-d3ec09326b27dd00b1f67a7ce48bc9817a313735.zip |
Added ADMIN$ share as alias for IPC$ except no guest connect. AS/U wants
to do RPC calls down this treeid.
Jeremy.
(This used to be commit 83133bab0ed59e303a183fd91812165f08e88484)
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/service.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/smbd/service.c b/source3/smbd/service.c index 02405e8dda..2c03d4e514 100644 --- a/source3/smbd/service.c +++ b/source3/smbd/service.c @@ -234,7 +234,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int snum = find_service(service); if (snum < 0) { - if (strequal(service,"IPC$")) { + if (strequal(service,"IPC$") || strequal(service,"ADMIN$")) { DEBUG(3,("refusing IPC connection\n")); *ecode = ERRnoipc; return NULL; @@ -284,7 +284,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int } /* you can only connect to the IPC$ service as an ipc device */ - if (strequal(service,"IPC$")) + if (strequal(service,"IPC$") || strequal(service,"ADMIN$")) pstrcpy(dev,"IPC"); if (*dev == '?' || !*dev) { @@ -386,7 +386,7 @@ connection_struct *make_connection(char *service,char *user,char *password, int conn->service = snum; conn->used = True; conn->printer = (strncmp(dev,"LPT",3) == 0); - conn->ipc = (strncmp(dev,"IPC",3) == 0); + conn->ipc = ((strncmp(dev,"IPC",3) == 0) || strequal(dev,"ADMIN$")); conn->dirptr = NULL; conn->veto_list = NULL; conn->hide_list = NULL; |