diff options
author | Simo Sorce <idra@samba.org> | 2010-09-01 19:05:43 -0400 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2010-09-23 10:36:54 -0700 |
commit | 4194383cfe151aa57e0b288c77a113c5922eb019 (patch) | |
tree | ee81b6c6a900ce4242598da55660247ee4c86eb8 /source3/rpc_server | |
parent | 412ebad02b74d8fbb1f6493e87abab7e345dc000 (diff) | |
download | samba-4194383cfe151aa57e0b288c77a113c5922eb019.tar.gz samba-4194383cfe151aa57e0b288c77a113c5922eb019.tar.bz2 samba-4194383cfe151aa57e0b288c77a113c5922eb019.zip |
gssapi: remove unused function argument
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/rpc_server')
-rw-r--r-- | source3/rpc_server/srv_pipe.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c index 15aaa8254a..f1bc54250a 100644 --- a/source3/rpc_server/srv_pipe.c +++ b/source3/rpc_server/srv_pipe.c @@ -1021,9 +1021,6 @@ static bool pipe_gssapi_auth_bind(struct pipes_struct *p, struct gse_context *gse_ctx = NULL; /* Let's init the gssapi machinery for this connection */ - /* passing a NULL server name means the server will try - * to accept any connection regardless of the name used as - * long as it can find a decryption key */ /* by passing NULL, the code will attempt to set a default * keytab based on configuration options */ status = gse_init_server(p, @@ -1032,7 +1029,7 @@ static bool pipe_gssapi_auth_bind(struct pipes_struct *p, (auth_info->auth_level == DCERPC_AUTH_LEVEL_PRIVACY), GSS_C_DCE_STYLE, - NULL, NULL, + NULL, &gse_ctx); if (!NT_STATUS_IS_OK(status)) { DEBUG(0, ("Failed to init dcerpc gssapi server (%s)\n", |