From: Günther Deschner Date: Tue, 15 Sep 2009 17:32:39 +0000 (+0200) Subject: s3-dcerpc: really fix remaining old auth level constants. sorry... X-Git-Tag: talloc-2.0.1~517^2~9 X-Git-Url: http://git.samba.org/samba.git/?a=commitdiff_plain;h=231b2fa26139a38bb67b3777c80b72e2f9d6d904;p=samba.git s3-dcerpc: really fix remaining old auth level constants. sorry... Guenther --- diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c index a4b4cb7fba2..3bd68c4e72d 100644 --- a/source3/rpc_server/srv_pipe.c +++ b/source3/rpc_server/srv_pipe.c @@ -1564,7 +1564,7 @@ bool api_pipe_bind_req(pipes_struct *p, prs_struct *rpc_in_p) prs_struct out_auth; int i = 0; int auth_len = 0; - unsigned int auth_type = RPC_ANONYMOUS_AUTH_TYPE; + unsigned int auth_type = DCERPC_AUTH_TYPE_NONE; /* No rebinds on a bound pipe - use alter context. */ if (p->pipe_bound) { @@ -1726,7 +1726,7 @@ bool api_pipe_bind_req(pipes_struct *p, prs_struct *rpc_in_p) } break; - case RPC_ANONYMOUS_AUTH_TYPE: + case DCERPC_AUTH_TYPE_NONE: /* Unauthenticated bind request. */ /* We're finished - no more packets. */ p->auth.auth_type = PIPE_AUTH_TYPE_NONE;