diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2011-02-27 20:45:42 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2011-02-28 21:11:21 +0100 |
commit | 31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2 (patch) | |
tree | 4d820ee2c94da215c5ab0e9f8ff110edfe52452d /lib | |
parent | 136c1600648f690d7709a204c4a7117bb5a868c3 (diff) | |
download | samba-31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2.tar.gz samba-31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2.tar.bz2 samba-31d09b13d3dc3aa204cf416bdf87eb39b7fe5de2.zip |
tdb: Use <tdb.h> to include tdb so system headers are found when building against system tdb.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crypto/md4test.c | 2 | ||||
-rw-r--r-- | lib/tdr/tdr.c | 2 | ||||
-rw-r--r-- | lib/util/util_runcmd.c | 2 | ||||
-rw-r--r-- | lib/util/util_tdb.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/lib/crypto/md4test.c b/lib/crypto/md4test.c index e406c692a1..7516e826ab 100644 --- a/lib/crypto/md4test.c +++ b/lib/crypto/md4test.c @@ -26,7 +26,7 @@ struct torture_context; /* This uses the test values from rfc1320 */ -bool torture_local_crypto_md4(struct torture_context *torture) +bool torture_local_crypto_md4(struct torture_context *torture) { bool ret = true; uint32_t i; diff --git a/lib/tdr/tdr.c b/lib/tdr/tdr.c index 95871047b7..ab016d0bc4 100644 --- a/lib/tdr/tdr.c +++ b/lib/tdr/tdr.c @@ -387,7 +387,7 @@ NTSTATUS tdr_push_to_fd(int fd, tdr_push_fn_t push_fn, const void *p) return NT_STATUS_OK; } -void tdr_print_debug_helper(struct tdr_print *tdr, const char *format, ...) _PRINTF_ATTRIBUTE(2,3) +void tdr_print_debug_helper(struct tdr_print *tdr, const char *format, ...) { va_list ap; char *s = NULL; diff --git a/lib/util/util_runcmd.c b/lib/util/util_runcmd.c index 50a3db7f72..d617254432 100644 --- a/lib/util/util_runcmd.c +++ b/lib/util/util_runcmd.c @@ -28,7 +28,7 @@ #include "includes.h" #include "system/filesys.h" #include <tevent.h> -#include <tevent_unix.h> +#include "../lib/util/tevent_unix.h" struct samba_runcmd_state { int stdout_log_level; diff --git a/lib/util/util_tdb.c b/lib/util/util_tdb.c index 8973b9b1ec..4a81678808 100644 --- a/lib/util/util_tdb.c +++ b/lib/util/util_tdb.c @@ -20,7 +20,7 @@ */ #include "includes.h" -#include "tdb.h" +#include <tdb.h> #include "../lib/util/util_tdb.h" /* these are little tdb utility functions that are meant to make |