Skip to content

Commit

Permalink
dynconfig: Use replace.h and memory.h directly, not via includes.h
Browse files Browse the repository at this point in the history
includes.h brings in talloc.h, but this was recently removed as a dependency.

Signed-off-by: Andrew Bartlett <[email protected]>
Reviewed-by: Andreas Schneider <[email protected]>

Autobuild-User(master): Andreas Schneider <[email protected]>
Autobuild-Date(master): Wed Oct 21 11:26:38 CEST 2015 on sn-devel-104
  • Loading branch information
abartlet authored and cryptomilk committed Oct 21, 2015
1 parent e4054f2 commit f1835d8
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions dynconfig/dynconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

#include "includes.h"

/**
* @file dynconfig.c
*
Expand All @@ -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; \
Expand Down

0 comments on commit f1835d8

Please sign in to comment.