[openssh-commits] [openssh] 03/05: upstream: Remove errant colon and simplify format
git+noreply at mindrot.org
git+noreply at mindrot.org
Wed Nov 9 21:01:35 AEDT 2022
This is an automated email from the git hooks/post-receive script.
dtucker pushed a commit to branch master
in repository openssh.
commit e6abafe9a6d809422d3432b95b3f9747b0acaa71
Author: dtucker at openbsd.org <dtucker at openbsd.org>
Date: Wed Nov 9 09:01:52 2022 +0000
upstream: Remove errant colon and simplify format
string in error messages. Patch from vapier at chromium.org.
OpenBSD-Commit-ID: fc28466ebc7b74e0072331947a89bdd239c160d3
---
misc.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/misc.c b/misc.c
index f2135803..977c097e 100644
--- a/misc.c
+++ b/misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.c,v 1.177 2022/08/11 01:56:51 djm Exp $ */
+/* $OpenBSD: misc.c,v 1.178 2022/11/09 09:01:52 dtucker Exp $ */
/*
* Copyright (c) 2000 Markus Friedl. All rights reserved.
* Copyright (c) 2005-2020 Damien Miller. All rights reserved.
@@ -278,7 +278,7 @@ set_sock_tos(int fd, int tos)
debug3_f("set socket %d IP_TOS 0x%02x", fd, tos);
if (setsockopt(fd, IPPROTO_IP, IP_TOS,
&tos, sizeof(tos)) == -1) {
- error("setsockopt socket %d IP_TOS %d: %s:",
+ error("setsockopt socket %d IP_TOS %d: %s",
fd, tos, strerror(errno));
}
# endif /* IP_TOS */
@@ -288,7 +288,7 @@ set_sock_tos(int fd, int tos)
debug3_f("set socket %d IPV6_TCLASS 0x%02x", fd, tos);
if (setsockopt(fd, IPPROTO_IPV6, IPV6_TCLASS,
&tos, sizeof(tos)) == -1) {
- error("setsockopt socket %d IPV6_TCLASS %d: %.100s:",
+ error("setsockopt socket %d IPV6_TCLASS %d: %s",
fd, tos, strerror(errno));
}
# endif /* IPV6_TCLASS */
--
To stop receiving notification emails like this one, please contact
djm at mindrot.org.
More information about the openssh-commits
mailing list