From: Stefan Metzmacher Date: Tue, 5 Jun 2012 07:51:02 +0000 (+0200) Subject: s3:smbd: move struct privilege_paths to smbd.h X-Git-Tag: tevent-0.9.16~79 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=ce414977694f72a70b86517b4991ff3bb9711915;p=thirdparty%2Fsamba.git s3:smbd: move struct privilege_paths to smbd.h metze --- diff --git a/source3/include/smb.h b/source3/include/smb.h index e5a8c0102c4..9a1ec371155 100644 --- a/source3/include/smb.h +++ b/source3/include/smb.h @@ -1279,15 +1279,6 @@ struct smb_filename { SMB_STRUCT_STAT st; }; -/* - * Pathnames used if request done - * under privilege. - */ -struct privilege_paths { - struct smb_filename parent_name; - struct smb_filename file_name; -}; - /* Used to keep track of deferred opens. */ struct deferred_open_record; diff --git a/source3/smbd/smbd.h b/source3/smbd/smbd.h index f0eb601d8cf..0b7be09d015 100644 --- a/source3/smbd/smbd.h +++ b/source3/smbd/smbd.h @@ -24,4 +24,13 @@ #include "smbd/proto.h" #include "locking/proto.h" +/* + * Pathnames used if request done + * under privilege. + */ +struct privilege_paths { + struct smb_filename parent_name; + struct smb_filename file_name; +}; + #endif /* _SMBD_SMBD_H */