diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2017-05-31 05:34:15 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2017-05-31 05:34:15 +0000 |
commit | b7b4c424285efbce2013ad079c10ea7ee687016b (patch) | |
tree | 30cac32ebfbcfe90081e8ee50b958155e8933fba /usr.bin/ssh | |
parent | b361543417bfe5ecf8ec390d4cb55f27ee5820a0 (diff) |
use the ssh_dispatch_run_fatal variant
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/auth2.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/auth2.c b/usr.bin/ssh/auth2.c index e50800e2d46..fcdfbdb820d 100644 --- a/usr.bin/ssh/auth2.c +++ b/usr.bin/ssh/auth2.c @@ -1,4 +1,4 @@ -/* $OpenBSD: auth2.c,v 1.140 2017/05/30 14:29:59 markus Exp $ */ +/* $OpenBSD: auth2.c,v 1.141 2017/05/31 05:34:14 markus Exp $ */ /* * Copyright (c) 2000 Markus Friedl. All rights reserved. * @@ -159,7 +159,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(ssh, DISPATCH_BLOCK, &authctxt->success, ssh); + ssh_dispatch_run_fatal(ssh, DISPATCH_BLOCK, &authctxt->success, ssh); ssh->authctxt = NULL; } |