summaryrefslogtreecommitdiff
path: root/source3
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2001-12-18 02:09:57 +0000
committerJeremy Allison <jra@samba.org>2001-12-18 02:09:57 +0000
commit2a6eeff2a7a7c8c2ada79a3d1270998287d726e9 (patch)
tree574bedc1a3be4e787b6b814894f746e8d2e20d79 /source3
parent0558e2c4024d419dfb7b77a2eec100f7916831d6 (diff)
downloadsamba-2a6eeff2a7a7c8c2ada79a3d1270998287d726e9.tar.gz
samba-2a6eeff2a7a7c8c2ada79a3d1270998287d726e9.tar.bz2
samba-2a6eeff2a7a7c8c2ada79a3d1270998287d726e9.zip
Return NT_STATUS_OBJECT_NOT_FOUND or ERRbadpipe if pipe name not found.
Jeremy. (This used to be commit d5fdb1f096e8db3e9cf7a65ddb75f7cafd1958c0)
Diffstat (limited to 'source3')
-rw-r--r--source3/smbd/nttrans.c2
-rw-r--r--source3/smbd/pipes.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c
index 2c3ac06f3c..457b045193 100644
--- a/source3/smbd/nttrans.c
+++ b/source3/smbd/nttrans.c
@@ -483,7 +483,7 @@ static int nt_open_pipe(char *fname, connection_struct *conn,
break;
if ( known_nt_pipes[i] == NULL )
- return(ERROR_DOS(ERRSRV,ERRaccess));
+ return(ERROR_BOTH(NT_STATUS_OBJECT_NAME_NOT_FOUND,ERRDOS,ERRbadpipe));
/* Strip \\ off the name. */
fname++;
diff --git a/source3/smbd/pipes.c b/source3/smbd/pipes.c
index 9a911ed014..cd8a56a5d2 100644
--- a/source3/smbd/pipes.c
+++ b/source3/smbd/pipes.c
@@ -67,7 +67,7 @@ int reply_open_pipe_and_X(connection_struct *conn,
break;
if (pipe_names[i].client_pipe == NULL)
- return(ERROR_DOS(ERRSRV,ERRaccess));
+ return(ERROR_BOTH(NT_STATUS_OBJECT_NAME_NOT_FOUND,ERRDOS,ERRbadpipe));
/* Strip \PIPE\ off the name. */
pstrcpy(fname, pipe_name + PIPELEN);