summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2020-02-20 10:25:16 +0100
committerKarolin Seeger <kseeger@samba.org>2020-02-25 21:10:14 +0000
commita33656c9df2cde3ff1cfc6b0427c7dfb2b140cae (patch)
treec530ac1df8ca65571e2aa798bb0ad03b27ab2a35
parent64b2eda07fcf3ee38a344848297c2a0f8a13748b (diff)
downloadsamba-a33656c9df2cde3ff1cfc6b0427c7dfb2b140cae.tar.gz
lib: Map EINPROGRESS->NT_STATUS_MORE_PROCESSING_REQUIRED
Bug: https://bugzilla.samba.org/show_bug.cgi?id=14285 Signed-off-by: Volker Lendecke <vl@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit 4a943d842a51674425f0c4019f823ef0a9d09f49)
-rw-r--r--source3/lib/errmap_unix.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source3/lib/errmap_unix.c b/source3/lib/errmap_unix.c
index 9eb30f7b814..20cc714ea9d 100644
--- a/source3/lib/errmap_unix.c
+++ b/source3/lib/errmap_unix.c
@@ -118,6 +118,7 @@ static const struct {
#ifdef EOVERFLOW
{ EOVERFLOW, NT_STATUS_ALLOTTED_SPACE_EXCEEDED },
#endif
+ { EINPROGRESS, NT_STATUS_MORE_PROCESSING_REQUIRED },
};
/*********************************************************************