From: Volker Lendecke Date: Mon, 26 Aug 2024 10:04:20 +0000 (+0200) Subject: libndr: We don't need "../" in includes, -I has what is needed X-Git-Tag: tdb-1.4.13~1231 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4539a6048e8274a5531debc0bb552dc1d00b6d61;p=thirdparty%2Fsamba.git libndr: We don't need "../" in includes, -I has what is needed Signed-off-by: Volker Lendecke Reviewed-by: Jeremy Allison --- diff --git a/librpc/ndr/libndr.h b/librpc/ndr/libndr.h index 02ef2836c1a..cd6367669b4 100644 --- a/librpc/ndr/libndr.h +++ b/librpc/ndr/libndr.h @@ -26,10 +26,10 @@ #define __LIBNDR_H__ #include -#include "../lib/util/discard.h" /* for discard_const */ -#include "../lib/util/data_blob.h" -#include "../lib/util/time.h" -#include "../lib/util/charset/charset.h" +#include "lib/util/discard.h" /* for discard_const */ +#include "lib/util/data_blob.h" +#include "lib/util/time.h" +#include "lib/util/charset/charset.h" /* this provides definitions for the libcli/rpc/ MSRPC library @@ -533,7 +533,7 @@ typedef enum ndr_err_code (*ndr_pull_flags_fn_t)(struct ndr_pull *, ndr_flags_ty typedef void (*ndr_print_fn_t)(struct ndr_print *, const char *, const void *); typedef void (*ndr_print_function_t)(struct ndr_print *, const char *, ndr_flags_type, const void *); -#include "../libcli/util/error.h" +#include "libcli/util/error.h" #include "librpc/gen_ndr/misc.h" extern const struct ndr_syntax_id ndr_transfer_syntax_ndr;