diff options
author | Jeremy Allison <jra@samba.org> | 2017-08-14 15:54:39 -0700 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2017-08-16 20:58:13 +0200 |
commit | bee22f187cfca26da13efb4cc980a705ec252a21 (patch) | |
tree | 592c6b7c911fd1fdbf0d3f78d7b8fbcb597c9555 /source4 | |
parent | 68316a4975bfe0b85a9d034955fa5bd315ec9436 (diff) | |
download | samba-bee22f187cfca26da13efb4cc980a705ec252a21.tar.gz |
lib: tevent: Use system <tevent.h>, not internal header path (except in self-test).
Signed-off-by: Jeremy Allison <jra@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source4')
-rw-r--r-- | source4/librpc/rpc/dcerpc_roh_channel_in.c | 2 | ||||
-rw-r--r-- | source4/librpc/rpc/dcerpc_roh_channel_out.c | 2 | ||||
-rw-r--r-- | source4/torture/smb2/rename.c | 2 | ||||
-rw-r--r-- | source4/torture/smb2/sharemode.c | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/source4/librpc/rpc/dcerpc_roh_channel_in.c b/source4/librpc/rpc/dcerpc_roh_channel_in.c index d6c37a33827..790b8b9a5ee 100644 --- a/source4/librpc/rpc/dcerpc_roh_channel_in.c +++ b/source4/librpc/rpc/dcerpc_roh_channel_in.c @@ -21,7 +21,7 @@ */ #include "includes.h" -#include "lib/tevent/tevent.h" +#include <tevent.h> #include "lib/talloc/talloc.h" #include "lib/tsocket/tsocket.h" #include "lib/tls/tls.h" diff --git a/source4/librpc/rpc/dcerpc_roh_channel_out.c b/source4/librpc/rpc/dcerpc_roh_channel_out.c index 4e1c93445ce..b3b801a4014 100644 --- a/source4/librpc/rpc/dcerpc_roh_channel_out.c +++ b/source4/librpc/rpc/dcerpc_roh_channel_out.c @@ -21,7 +21,7 @@ */ #include "includes.h" -#include "lib/tevent/tevent.h" +#include <tevent.h> #include "lib/talloc/talloc.h" #include "lib/tsocket/tsocket.h" #include "lib/tls/tls.h" diff --git a/source4/torture/smb2/rename.c b/source4/torture/smb2/rename.c index 4c41c8b7d43..5055cf24344 100644 --- a/source4/torture/smb2/rename.c +++ b/source4/torture/smb2/rename.c @@ -22,7 +22,7 @@ #include "includes.h" #include "libcli/smb2/smb2.h" #include "libcli/smb2/smb2_calls.h" -#include "lib/tevent/tevent.h" +#include <tevent.h> #include "lib/util/tevent_ntstatus.h" #include "torture/torture.h" diff --git a/source4/torture/smb2/sharemode.c b/source4/torture/smb2/sharemode.c index f59927c5b39..d1ad22e477d 100644 --- a/source4/torture/smb2/sharemode.c +++ b/source4/torture/smb2/sharemode.c @@ -25,7 +25,7 @@ #include "libcli/security/security.h" #include "torture/torture.h" #include "torture/smb2/proto.h" -#include "lib/tevent/tevent.h" +#include <tevent.h> #define BASEDIRHOLD "sharemode_hold_test" |