From 61bf804e8f8d7b43ff7b31b119fb988b30a7e54a Mon Sep 17 00:00:00 2001 From: Björn Jacke Date: Wed, 10 Mar 2010 20:58:16 +0100 Subject: ѕ4: EDQUOT needs to be mapped to NT_STATUS_DISK_FULL MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source4/libcli/util/errormap.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/libcli') diff --git a/source4/libcli/util/errormap.c b/source4/libcli/util/errormap.c index 930e45b214..c31419569c 100644 --- a/source4/libcli/util/errormap.c +++ b/source4/libcli/util/errormap.c @@ -1321,7 +1321,7 @@ const struct unix_error_map unix_nt_errmap[] = { { ENODATA, NT_STATUS_NOT_FOUND }, #endif #ifdef EDQUOT - { EDQUOT, NT_STATUS_QUOTA_EXCEEDED }, + { EDQUOT, NT_STATUS_DISK_FULL }, /* Windows does NOT return NT_STATUS_QUOTA_EXCEEDED */ #endif #ifdef ENOTEMPTY { ENOTEMPTY, NT_STATUS_DIRECTORY_NOT_EMPTY }, -- cgit