diff options
author | Rusty Russell <rusty@rustcorp.com.au> | 2012-02-21 15:29:12 +1030 |
---|---|---|
committer | Rusty Russell <rusty@rustcorp.com.au> | 2012-02-21 15:29:12 +1030 |
commit | e6901fa35069e234044c94b87ac9df4064b31d1c (patch) | |
tree | 407c937d52bed64033f0e60e77b8fcd34233f543 /lib/tdb2/tools/tdb2tool.c | |
parent | fb8cf568caf43615f7a06a623209a0fade629a35 (diff) | |
download | samba-e6901fa35069e234044c94b87ac9df4064b31d1c.tar.gz samba-e6901fa35069e234044c94b87ac9df4064b31d1c.tar.bz2 samba-e6901fa35069e234044c94b87ac9df4064b31d1c.zip |
lib/tdb2: tools should use config.h, and replace where available.
The tdb2 tools should #include "config.h" before tdb2.h (about to
become a requirement) and use libreplace where available.
Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Diffstat (limited to 'lib/tdb2/tools/tdb2tool.c')
-rw-r--r-- | lib/tdb2/tools/tdb2tool.c | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/lib/tdb2/tools/tdb2tool.c b/lib/tdb2/tools/tdb2tool.c index 9b3554de6c..ae20971143 100644 --- a/lib/tdb2/tools/tdb2tool.c +++ b/lib/tdb2/tools/tdb2tool.c @@ -20,7 +20,14 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ +#include "config.h" #include "tdb2.h" +#ifdef HAVE_LIBREPLACE +#include <replace.h> +#include <system/filesys.h> +#include <system/time.h> +#include <system/locale.h> +#else #include <stdlib.h> #include <stdio.h> #include <ctype.h> @@ -31,6 +38,7 @@ #include <errno.h> #include <string.h> #include <stdarg.h> +#endif static int do_command(void); const char *cmdname; |