diff options
author | Simo Sorce <idra@samba.org> | 2010-09-03 11:03:49 -0400 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-23 10:54:23 -0700 |
commit | d10e192b83e2c016873d7c2198f62173834287f0 (patch) | |
tree | 72d9d6ed8ce885825651d9d79b20b72bd90997a9 /source3/rpcclient | |
parent | b475cfd0b2376fdf2a8426f33be8c940b035fe26 (diff) | |
download | samba-d10e192b83e2c016873d7c2198f62173834287f0.tar.gz samba-d10e192b83e2c016873d7c2198f62173834287f0.tar.xz samba-d10e192b83e2c016873d7c2198f62173834287f0.zip |
s3-dcerpc: finally remove the legaqcy spnego_type variable from pipe_auth_data
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/rpcclient')
-rw-r--r-- | source3/rpcclient/rpcclient.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 5fa8132db8..a1faca78d8 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -28,6 +28,12 @@ #include "../librpc/gen_ndr/ndr_netlogon.h" #include "rpc_client/cli_netlogon.h" +enum pipe_auth_type_spnego { + PIPE_AUTH_TYPE_SPNEGO_NONE = 0, + PIPE_AUTH_TYPE_SPNEGO_NTLMSSP, + PIPE_AUTH_TYPE_SPNEGO_KRB5 +}; + struct dom_sid domain_sid; static enum dcerpc_AuthType pipe_default_auth_type = DCERPC_AUTH_TYPE_NONE; |