summaryrefslogtreecommitdiffstats
path: root/source/smbd/ipc.c
diff options
context:
space:
mode:
authorJeremy Allison <jra@samba.org>2003-03-07 23:34:51 +0000
committerJeremy Allison <jra@samba.org>2003-03-07 23:34:51 +0000
commit723e9ee31cc1f5eb4b7aefefd58f7f13d0abda05 (patch)
tree44f7ca8bcb498c7ba4321803e5194236909a9641 /source/smbd/ipc.c
parent183ce97d3719080b1b01932b96206b8ee4c5f5b0 (diff)
downloadsamba-723e9ee31cc1f5eb4b7aefefd58f7f13d0abda05.tar.gz
samba-723e9ee31cc1f5eb4b7aefefd58f7f13d0abda05.tar.xz
samba-723e9ee31cc1f5eb4b7aefefd58f7f13d0abda05.zip
Use ERROR_NT, not ERROR_DOS as Andrew Bartlett pointed out.
Jeremy.
Diffstat (limited to 'source/smbd/ipc.c')
-rw-r--r--source/smbd/ipc.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/smbd/ipc.c b/source/smbd/ipc.c
index 67c5da01f33..da30ec74402 100644
--- a/source/smbd/ipc.c
+++ b/source/smbd/ipc.c
@@ -566,5 +566,5 @@ int reply_trans(connection_struct *conn, char *inbuf,char *outbuf, int size, int
SAFE_FREE(params);
SAFE_FREE(setup);
END_PROFILE(SMBtrans);
- return ERROR_DOS(ERRDOS,ERRinvalidparam);
+ return ERROR_NT(NT_STATUS_INVALID_PARAMETER);
}