diff options
author | Andrew Bartlett <abartlet@samba.org> | 2010-10-12 15:27:50 +1100 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2010-10-12 05:54:10 +0000 |
commit | f768b32e37788e6722217148b0a73e54c04bc03a (patch) | |
tree | cfbd8582766d35dc9fd7627e987ea58740679d6c /source3/rpcclient | |
parent | 5742f5115cc5102a668f8debc86deec23a4081f1 (diff) | |
download | samba-f768b32e37788e6722217148b0a73e54c04bc03a.tar.gz samba-f768b32e37788e6722217148b0a73e54c04bc03a.tar.xz samba-f768b32e37788e6722217148b0a73e54c04bc03a.zip |
libcli/security Provide a common, top level libcli/security/security.h
This will reduce the noise from merges of the rest of the
libcli/security code, without this commit changing what code
is actually used.
This includes (along with other security headers) dom_sid.h and
security_token.h
Andrew Bartlett
Autobuild-User: Andrew Bartlett <abartlet@samba.org>
Autobuild-Date: Tue Oct 12 05:54:10 UTC 2010 on sn-devel-104
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/cmd_lsarpc.c | 1 | ||||
-rw-r--r-- | source3/rpcclient/cmd_samr.c | 2 | ||||
-rw-r--r-- | source3/rpcclient/rpcclient.c | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/source3/rpcclient/cmd_lsarpc.c b/source3/rpcclient/cmd_lsarpc.c index 0b11be9df9a..f55400d134e 100644 --- a/source3/rpcclient/cmd_lsarpc.c +++ b/source3/rpcclient/cmd_lsarpc.c @@ -27,6 +27,7 @@ #include "../librpc/gen_ndr/cli_lsa.h" #include "rpc_client/cli_lsarpc.h" #include "rpc_client/init_lsa.h" +#include "../libcli/security/security.h" /* useful function to allow entering a name instead of a SID and * looking it up automatically */ diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index 7730e65c121..5f5819fdf93 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -30,7 +30,7 @@ #include "rpc_client/cli_samr.h" #include "rpc_client/init_samr.h" #include "rpc_client/init_lsa.h" -#include "../libcli/security/dom_sid.h" +#include "../libcli/security/security.h" extern struct dom_sid domain_sid; diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index b0412ef1d25..34a81742e48 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -28,6 +28,7 @@ #include "../librpc/gen_ndr/ndr_netlogon.h" #include "rpc_client/cli_netlogon.h" #include "../libcli/smbreadline/smbreadline.h" +#include "../libcli/security/security.h" enum pipe_auth_type_spnego { PIPE_AUTH_TYPE_SPNEGO_NONE = 0, |