diff options
author | Günther Deschner <gd@samba.org> | 2011-03-18 16:22:14 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-03-30 01:13:07 +0200 |
commit | b0773aa61a1fdecfd80f09454ff85c7bb4b7896b (patch) | |
tree | d6b1eeb8a553c36fa19c43fd7b26b5c8baac640b | |
parent | 35c2d8ec1edd84714d9d6f8082d116d734b83161 (diff) | |
download | samba-b0773aa61a1fdecfd80f09454ff85c7bb4b7896b.tar.gz samba-b0773aa61a1fdecfd80f09454ff85c7bb4b7896b.tar.xz samba-b0773aa61a1fdecfd80f09454ff85c7bb4b7896b.zip |
s3-passdb: move mapping.h into passdb.h, its needed here.
Guenther
-rw-r--r-- | source3/include/includes.h | 1 | ||||
-rw-r--r-- | source3/include/passdb.h | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/source3/include/includes.h b/source3/include/includes.h index 7da7ba29f2..3ae2fbbd0e 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -541,7 +541,6 @@ typedef char fstring[FSTRING_LEN]; #include "smb.h" #include "nameserv.h" #include "../lib/util/byteorder.h" -#include "mapping.h" #include "passdb.h" #include "auth.h" diff --git a/source3/include/passdb.h b/source3/include/passdb.h index e17bcd5031..b4a14aaacc 100644 --- a/source3/include/passdb.h +++ b/source3/include/passdb.h @@ -23,6 +23,8 @@ #ifndef _PASSDB_H #define _PASSDB_H +#include "mapping.h" + /********************************************************************** * Masks for mappings between unix uid and gid types and * NT RIDS. |