diff options
author | Andrew Tridgell <tridge@samba.org> | 2004-12-05 07:43:38 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:06:21 -0500 |
commit | 41999d67c1980e0631c4f357d3825cfda9b9fc1a (patch) | |
tree | 6ce2d5e0fff6a8fbecb82a01b17ca45d0903bc81 | |
parent | 9922c2d0357a89db4ee4abbb0beded6a0f24b010 (diff) | |
download | samba-41999d67c1980e0631c4f357d3825cfda9b9fc1a.tar.gz samba-41999d67c1980e0631c4f357d3825cfda9b9fc1a.tar.bz2 samba-41999d67c1980e0631c4f357d3825cfda9b9fc1a.zip |
r4065: fixed ntstatus->dos error code for NT_STATUS_NO_SUCH_FILE
(This used to be commit 19efd83b863a8c94f509d6a933a7d5de43aa95e9)
-rw-r--r-- | source4/libcli/util/errormap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/libcli/util/errormap.c b/source4/libcli/util/errormap.c index 6849d7d0cd..cc3b960082 100644 --- a/source4/libcli/util/errormap.c +++ b/source4/libcli/util/errormap.c @@ -65,7 +65,7 @@ static const struct { {ERRHRD, ERRgeneral, NT_STATUS_TIMER_NOT_CANCELED}, {ERRDOS, 87, NT_STATUS_INVALID_PARAMETER}, {ERRDOS, ERRbadfile, NT_STATUS_NO_SUCH_DEVICE}, - {ERRDOS, ERRbadfile, NT_STATUS_NO_SUCH_FILE}, + {ERRDOS, ERRnofiles, NT_STATUS_NO_SUCH_FILE}, {ERRDOS, ERRbadfunc, NT_STATUS_INVALID_DEVICE_REQUEST}, {ERRDOS, 38, NT_STATUS_END_OF_FILE}, {ERRDOS, 34, NT_STATUS_WRONG_VOLUME}, |