diff options
author | Andrew Bartlett <abartlet@samba.org> | 2011-07-21 13:20:26 +1000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2011-08-03 18:48:01 +1000 |
commit | 16b2118b4369f8204d86d5ad2eb117837da26789 (patch) | |
tree | d6d30eba2a3fe3d8d0ebc59782868e81b770a610 /source4/torture | |
parent | de71a67a1c442a72a7ab88674430b44d371c09d5 (diff) | |
download | samba-16b2118b4369f8204d86d5ad2eb117837da26789.tar.gz samba-16b2118b4369f8204d86d5ad2eb117837da26789.tar.bz2 samba-16b2118b4369f8204d86d5ad2eb117837da26789.zip |
gensec: split GENSEC into mechanism-dependent and runtime functions
The startup and runtime functions that have no dependencies are moved
into the top level.
Andrew Bartlett
Signed-off-by: Andrew Tridgell <tridge@samba.org>
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/samlogon.c | 1 | ||||
-rw-r--r-- | source4/torture/rpc/samr.c | 1 | ||||
-rw-r--r-- | source4/torture/rpc/samsync.c | 1 | ||||
-rw-r--r-- | source4/torture/rpc/schannel.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/source4/torture/rpc/samlogon.c b/source4/torture/rpc/samlogon.c index 80828e26a2..cff39dde56 100644 --- a/source4/torture/rpc/samlogon.c +++ b/source4/torture/rpc/samlogon.c @@ -29,6 +29,7 @@ #include "lib/cmdline/popt_common.h" #include "torture/rpc/torture_rpc.h" #include "auth/gensec/gensec.h" +#include "auth/gensec/schannel.h" #include "libcli/auth/libcli_auth.h" #include "param/param.h" diff --git a/source4/torture/rpc/samr.c b/source4/torture/rpc/samr.c index 53cb10abf2..f7d6a93bb3 100644 --- a/source4/torture/rpc/samr.c +++ b/source4/torture/rpc/samr.c @@ -35,6 +35,7 @@ #include "torture/rpc/torture_rpc.h" #include "param/param.h" #include "auth/gensec/gensec.h" +#include "auth/gensec/schannel.h" #include "auth/gensec/gensec_proto.h" #include "../libcli/auth/schannel.h" diff --git a/source4/torture/rpc/samsync.c b/source4/torture/rpc/samsync.c index 980e085268..fd1fbbff1f 100644 --- a/source4/torture/rpc/samsync.c +++ b/source4/torture/rpc/samsync.c @@ -27,6 +27,7 @@ #include "system/time.h" #include "torture/rpc/torture_rpc.h" #include "auth/gensec/gensec.h" +#include "auth/gensec/schannel.h" #include "libcli/auth/libcli_auth.h" #include "libcli/samsync/samsync.h" #include "libcli/security/security.h" diff --git a/source4/torture/rpc/schannel.c b/source4/torture/rpc/schannel.c index c76231c991..245f33c991 100644 --- a/source4/torture/rpc/schannel.c +++ b/source4/torture/rpc/schannel.c @@ -26,6 +26,7 @@ #include "auth/credentials/credentials.h" #include "torture/rpc/torture_rpc.h" #include "lib/cmdline/popt_common.h" +#include "auth/gensec/schannel.h" #include "../libcli/auth/schannel.h" #include "libcli/auth/libcli_auth.h" #include "libcli/security/security.h" |