mirror of
https://github.com/samba-team/samba.git
synced 2025-02-08 05:57:51 +03:00
s3:lib/errmap_unix: map EOVERFLOW to NT_STATUS_ALLOTTED_SPACE_EXCEEDED
vfs_fruit returns the correct error NT_STATUS_ALLOTTED_SPACE_EXCEEDED when an attempt is made to extend the AFP_AfpInfo stream beyond 60 bytes. This will be used in a subsequent commit in vfs_fruit. Bug: https://bugzilla.samba.org/show_bug.cgi?id=11347 Signed-off-by: Ralph Boehme <slow@samba.org> Reviewed-by: Jeremy Allison <jra@samba.org> (cherry picked from commit 1650e793edb42b07501d7467aa64c80eacf33eb6)
This commit is contained in:
parent
a9d4091c89
commit
e150a702fe
@ -115,6 +115,9 @@ static const struct {
|
||||
#ifdef ETXTBSY
|
||||
{ ETXTBSY, NT_STATUS_SHARING_VIOLATION },
|
||||
#endif
|
||||
#ifdef EOVERFLOW
|
||||
{ EOVERFLOW, NT_STATUS_ALLOTTED_SPACE_EXCEEDED },
|
||||
#endif
|
||||
};
|
||||
|
||||
/*********************************************************************
|
||||
|
Loading…
x
Reference in New Issue
Block a user