From: dtucker Date: Fri, 10 Mar 2023 07:17:08 +0000 (+0000) Subject: Explicitly ignore return from fcntl(... FD_CLOEXEC) here too. X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=c611b7a9812e8415430ef80a54849501802d267a;p=openbsd Explicitly ignore return from fcntl(... FD_CLOEXEC) here too. Coverity CID 291853. --- diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index 6ceb2d9b953..a0ff055181d 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.362 2023/03/05 05:34:09 dtucker Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.363 2023/03/10 07:17:08 dtucker Exp $ */ /* * Author: Tatu Ylonen * Copyright (c) 1995 Tatu Ylonen , Espoo, Finland @@ -347,7 +347,7 @@ ssh_create_socket(struct addrinfo *ai) error("socket: %s", strerror(errno)); return -1; } - fcntl(sock, F_SETFD, FD_CLOEXEC); + (void)fcntl(sock, F_SETFD, FD_CLOEXEC); /* Use interactive QOS (if specified) until authentication completed */ if (options.ip_qos_interactive != INT_MAX)