diff options
author | Darren Tucker <dtucker@cvs.openbsd.org> | 2023-03-30 07:19:51 +0000 |
---|---|---|
committer | Darren Tucker <dtucker@cvs.openbsd.org> | 2023-03-30 07:19:51 +0000 |
commit | 66f61c7a747c112ad754e80d3818af10d1a6ffa8 (patch) | |
tree | eb6304adfe13688f1024eef8b6c10e0fbd89dee7 /usr.bin/ssh/ssh.c | |
parent | 3795e4660278f30f63631b0b2fc94757bd129212 (diff) |
Ignore return value from muxclient(). It normally loops without returning,
but it if returns on failure we immediately exit. Coverity CID 405050.
Diffstat (limited to 'usr.bin/ssh/ssh.c')
-rw-r--r-- | usr.bin/ssh/ssh.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/ssh.c b/usr.bin/ssh/ssh.c index c9de7718462..2f59969f852 100644 --- a/usr.bin/ssh/ssh.c +++ b/usr.bin/ssh/ssh.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh.c,v 1.586 2023/03/27 03:56:11 dtucker Exp $ */ +/* $OpenBSD: ssh.c,v 1.587 2023/03/30 07:19:50 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1739,7 +1739,7 @@ control_persist_detach(void) close(muxserver_sock); muxserver_sock = -1; options.control_master = SSHCTL_MASTER_NO; - muxclient(options.control_path); + (void)muxclient(options.control_path); /* muxclient() doesn't return on success. */ fatal("Failed to connect to new control master"); } |