diff options
author | Christof Schmitt <cs@samba.org> | 2015-02-18 15:24:56 -0700 |
---|---|---|
committer | Christof Schmitt <cs@samba.org> | 2015-03-02 22:31:08 +0100 |
commit | 5e022bc339c9ed665eb98a9b9a5e024d58d5cea4 (patch) | |
tree | 5a86c51fefcdd43a0bcee8d37681f418bf746a44 /source3 | |
parent | d93767fe8f4edd3a2d68f4886df362a6729511c5 (diff) | |
download | samba-5e022bc339c9ed665eb98a9b9a5e024d58d5cea4.tar.gz |
gpfs: Remove unncessary includes from gpfs.c
replace.h provides everything that is required (errno and ENOSYS).
Signed-off-by: Christof Schmitt <cs@samba.org>
Reviewed-by: Ralph Böhme <slow@samba.org>
Diffstat (limited to 'source3')
-rw-r--r-- | source3/modules/gpfs.c | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/source3/modules/gpfs.c b/source3/modules/gpfs.c index 6b7af7c6ea1..9e08a1be247 100644 --- a/source3/modules/gpfs.c +++ b/source3/modules/gpfs.c @@ -17,11 +17,7 @@ * along with this program; if not, see <http://www.gnu.org/licenses/>. */ -#include "includes.h" -#include "system/filesys.h" -#include "smbd/smbd.h" - -#include <fcntl.h> +#include "replace.h" #include "vfs_gpfs.h" static int (*gpfs_set_share_fn)(int fd, unsigned int allow, unsigned int deny); |