diff options
author | Michael Adam <obnox@samba.org> | 2012-07-02 14:46:00 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2012-07-03 13:39:41 +0200 |
commit | e332bfaff51e54638bd37cd1fe08e57608e16e86 (patch) | |
tree | b2e2e29a5c945b4df7c8e73a3b76c239f77331b4 /source3 | |
parent | 8a32d62abc7c9f514fa3de2c87202ef7b68bd2b5 (diff) | |
download | samba-e332bfaff51e54638bd37cd1fe08e57608e16e86.tar.gz samba-e332bfaff51e54638bd37cd1fe08e57608e16e86.tar.bz2 samba-e332bfaff51e54638bd37cd1fe08e57608e16e86.zip |
s3:smbd: Include smbXsrv.h before vfs.h (in smbd.h) so that the smbXsrv structures are available
This is currently needed for files_struct and connection_struct
that contain backlinks to smbXsrv_open and smbXsrv_tcon, respectively.
Finally, these backlinks to the smb level structures should be removed.
Diffstat (limited to 'source3')
-rw-r--r-- | source3/smbd/smbd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/smbd/smbd.h b/source3/smbd/smbd.h index c8209b12ae..9233fd743c 100644 --- a/source3/smbd/smbd.h +++ b/source3/smbd/smbd.h @@ -23,8 +23,8 @@ struct dptr_struct; struct aio_extra; #include "smb_acls.h" -#include "vfs.h" #include "librpc/gen_ndr/smbXsrv.h" +#include "vfs.h" #include "smbd/proto.h" #include "locking/proto.h" |