summaryrefslogtreecommitdiffstats
path: root/source/smbd/pipes.c
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
commitd5fdb1f096e8db3e9cf7a65ddb75f7cafd1958c0 (patch)
treeab2041bc4bf0962cd6e99584467d4b30923126d2 /source/smbd/pipes.c
parent9f2b6a07429da5dec59e562fa5489b8079978677 (diff)
downloadsamba-d5fdb1f096e8db3e9cf7a65ddb75f7cafd1958c0.tar.gz
samba-d5fdb1f096e8db3e9cf7a65ddb75f7cafd1958c0.tar.xz
samba-d5fdb1f096e8db3e9cf7a65ddb75f7cafd1958c0.zip
Return NT_STATUS_OBJECT_NOT_FOUND or ERRbadpipe if pipe name not found.
Jeremy.
Diffstat (limited to 'source/smbd/pipes.c')
-rw-r--r--source/smbd/pipes.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/pipes.c b/source/smbd/pipes.c
index 9a911ed0145..cd8a56a5d2a 100644
--- a/source/smbd/pipes.c
+++ b/source/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);