mirror of
https://github.com/samba-team/samba.git
synced 2025-11-15 16:23:49 +03:00
r2520: - finished implementing the server side of the old style search requests
This commit is contained in:
committed by
Gerald (Jerry) Carter
parent
00de28876d
commit
4e4859c06b
@@ -50,6 +50,7 @@ static const struct {
|
||||
uint32_t dos_code;
|
||||
NTSTATUS ntstatus;
|
||||
} ntstatus_to_dos_map[] = {
|
||||
{ERRDOS, ERRnofiles, STATUS_NO_MORE_FILES},
|
||||
{ERRDOS, ERRgeneral, NT_STATUS_UNSUCCESSFUL},
|
||||
{ERRDOS, ERRbadfunc, NT_STATUS_NOT_IMPLEMENTED},
|
||||
{ERRDOS, 87, NT_STATUS_INVALID_INFO_CLASS},
|
||||
@@ -616,6 +617,7 @@ static const struct {
|
||||
uint32_t dos_code;
|
||||
NTSTATUS ntstatus;
|
||||
} dos_to_ntstatus_map[] = {
|
||||
{ERRDOS, ERRnofiles, STATUS_NO_MORE_FILES},
|
||||
{ERRDOS, ERRbadfunc, NT_STATUS_NOT_IMPLEMENTED},
|
||||
{ERRDOS, ERRbadfile, NT_STATUS_NO_SUCH_FILE},
|
||||
{ERRDOS, ERRbadpath, NT_STATUS_OBJECT_PATH_NOT_FOUND},
|
||||
@@ -628,7 +630,6 @@ static const struct {
|
||||
{ERRDOS, 14, NT_STATUS_SECTION_NOT_EXTENDED},
|
||||
{ERRDOS, ERRremcd, NT_STATUS_DIRECTORY_NOT_EMPTY},
|
||||
{ERRDOS, ERRdiffdevice, NT_STATUS_NOT_SAME_DEVICE},
|
||||
{ERRDOS, ERRnofiles, NT_STATUS(0x80000006)},
|
||||
{ERRDOS, 19, NT_STATUS_MEDIA_WRITE_PROTECTED},
|
||||
{ERRDOS, 21, NT_STATUS_NO_MEDIA_IN_DEVICE},
|
||||
{ERRDOS, 22, NT_STATUS_INVALID_DEVICE_STATE},
|
||||
|
||||
Reference in New Issue
Block a user