From 72088096af8dbf57cbc85c71cd0eef4447e7560d Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Wed, 21 Jul 2010 12:11:37 -0400 Subject: rpcclient: Use DCERPC_AUTH_LEVEL_CONNECT if no sign/seal is set for krb5 auth --- source3/rpcclient/rpcclient.c | 6 ++++++ 1 file changed, 6 insertions(+) (limited to 'source3/rpcclient') diff --git a/source3/rpcclient/rpcclient.c b/source3/rpcclient/rpcclient.c index 1ab3ac07f6..f5f1f01df6 100644 --- a/source3/rpcclient/rpcclient.c +++ b/source3/rpcclient/rpcclient.c @@ -1014,6 +1014,12 @@ out_free: } } if (binding->flags & DCERPC_AUTH_KRB5) { + /* If neither Integrity or Privacy are requested then + * Use just Connect level */ + if (pipe_default_auth_level == DCERPC_AUTH_LEVEL_NONE) { + pipe_default_auth_level = DCERPC_AUTH_LEVEL_CONNECT; + } + if (pipe_default_auth_type == DCERPC_AUTH_TYPE_SPNEGO) { pipe_default_auth_spnego_type = PIPE_AUTH_TYPE_SPNEGO_KRB5; } else { -- cgit