diff options
author | Jeremy Allison <jra@samba.org> | 2003-03-07 23:34:51 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-03-07 23:34:51 +0000 |
commit | 723e9ee31cc1f5eb4b7aefefd58f7f13d0abda05 (patch) | |
tree | 44f7ca8bcb498c7ba4321803e5194236909a9641 /source/smbd/ipc.c | |
parent | 183ce97d3719080b1b01932b96206b8ee4c5f5b0 (diff) | |
download | samba-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.c | 2 |
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); } |