diff options
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/trans2.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/smbd/trans2.c b/source3/smbd/trans2.c index dcf771a5b9..63ee76bce9 100644 --- a/source3/smbd/trans2.c +++ b/source3/smbd/trans2.c @@ -3648,13 +3648,16 @@ static void call_trans2setfsinfo(connection_struct *conn, switch(info_level) { case SMB_SET_CIFS_UNIX_INFO: if (!lp_unix_extensions()) { + DEBUG(2,("call_trans2setfsinfo: " + "SMB_SET_CIFS_UNIX_INFO is invalid with " + "unix extensions off\n")); reply_nterror(req, NT_STATUS_INVALID_LEVEL); return; } /* There should be 12 bytes of capabilities set. */ - if (total_data < 8) { + if (total_data < 12) { reply_nterror( req, NT_STATUS_INVALID_PARAMETER); |