diff options
author | Volker Lendecke <vl@samba.org> | 2010-12-10 08:48:19 -0700 |
---|---|---|
committer | Volker Lendecke <vlendec@samba.org> | 2010-12-19 23:25:06 +0100 |
commit | d082701ea5131b02a49321ef29d1aa58a80ee92a (patch) | |
tree | fb2cd69cc60daacb16b983c7930b7e43835ee723 /source3/smbd | |
parent | 356add8a638b737cf72181beaa13342ab920ace8 (diff) | |
download | samba-d082701ea5131b02a49321ef29d1aa58a80ee92a.tar.gz samba-d082701ea5131b02a49321ef29d1aa58a80ee92a.tar.bz2 samba-d082701ea5131b02a49321ef29d1aa58a80ee92a.zip |
s3: Reply correctly to FSCTL_IS_VOLUME_DIRTY
Diffstat (limited to 'source3/smbd')
-rw-r--r-- | source3/smbd/nttrans.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source3/smbd/nttrans.c b/source3/smbd/nttrans.c index cccb47a97f..da1231c83b 100644 --- a/source3/smbd/nttrans.c +++ b/source3/smbd/nttrans.c @@ -2432,6 +2432,15 @@ static void call_nt_transact_ioctl(connection_struct *conn, } return; } + case FSCTL_IS_VOLUME_DIRTY: + DEBUG(10,("FSCTL_IS_VOLUME_DIRTY: called on FID[0x%04X] " + "(but not implemented)\n", (int)fidnum)); + /* + * http://msdn.microsoft.com/en-us/library/cc232128%28PROT.10%29.aspx + * says we have to respond with NT_STATUS_INVALID_PARAMETER + */ + reply_nterror(req, NT_STATUS_INVALID_PARAMETER); + return; default: /* Only print this once... */ if (!logged_ioctl_message) { |