diff options
-rw-r--r-- | source3/smbd/trans2.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index 0d84c40065..0c6026392c 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -395,9 +395,11 @@ static NTSTATUS set_ea(connection_struct *conn, files_struct *fsp, const char *f } if (ret == -1) { +#ifdef ENOTSUP if (errno == ENOTSUP) { return NT_STATUS_EAS_NOT_SUPPORTED; } +#endif return map_nt_error_from_unix(errno); } |