diff options
author | markus@openbsd.org <markus@openbsd.org> | 2017-05-31 09:00:13 +0200 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2017-06-01 06:53:33 +0200 |
commit | 92e9fe633130376a95dd533df6e5e6a578c1e6b8 (patch) | |
tree | c6f037e447c3c6fe4d79a71fb5a14f712f739617 /auth2.c | |
parent | upstream commit (diff) | |
download | openssh-92e9fe633130376a95dd533df6e5e6a578c1e6b8.tar.xz openssh-92e9fe633130376a95dd533df6e5e6a578c1e6b8.zip |
upstream commit
remove now obsolete ctx from ssh_dispatch_run; ok djm@
Upstream-ID: 9870aabf7f4d71660c31fda91b942b19a8e68d29
Diffstat (limited to 'auth2.c')
-rw-r--r-- | auth2.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -/* $OpenBSD: auth2.c,v 1.141 2017/05/31 05:34:14 markus Exp $ */ +/* $OpenBSD: auth2.c,v 1.142 2017/05/31 07:00:13 markus Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -172,7 +172,7 @@ do_authentication2(Authctxt *authctxt) ssh->authctxt = authctxt; /* XXX move to caller */ ssh_dispatch_init(ssh, &dispatch_protocol_error); ssh_dispatch_set(ssh, SSH2_MSG_SERVICE_REQUEST, &input_service_request); - ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success, ssh); + ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success); ssh->authctxt = NULL; } |