1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-25 14:50:24 +03:00

dynconfig: Use replace.h and memory.h directly, not via includes.h

includes.h brings in talloc.h, but this was recently removed as a dependency.

Signed-off-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>

Autobuild-User(master): Andreas Schneider <asn@cryptomilk.org>
Autobuild-Date(master): Wed Oct 21 11:26:38 CEST 2015 on sn-devel-104
This commit is contained in:
Andrew Bartlett 2015-10-21 14:10:57 +13:00 committed by Andreas Schneider
parent e4054f2118
commit f1835d8531

View File

@ -18,8 +18,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
#include "includes.h"
/**
* @file dynconfig.c
*
@ -40,10 +38,9 @@
* table? There's kind of a chicken-and-egg situation there...
**/
#include "replace.h"
#include "dynconfig.h"
#ifdef strdup
#undef strdup
#endif
#include "lib/util/memory.h"
#define DEFINE_DYN_CONFIG_PARAM(name) \
const char *dyn_##name = name; \