net-misc/openssh: switch to upstream variant of patch

Bug: https://bugs.gentoo.org/935353
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2024-07-07 09:43:34 +01:00
parent 452e53a960
commit d791fcea11

View File

@@ -1,13 +1,14 @@
# Pulled patch from Voidlinux
# Bug: https://bugs.gentoo.org/935353
https://bugzilla.mindrot.org/show_bug.cgi?id=3707
https://bugs.gentoo.org/935353
--- a/openbsd-compat/port-linux.c
+++ b/openbsd-compat/port-linux.c
@@ -366,7 +366,7 @@
@@ -366,7 +366,7 @@ ssh_systemd_notify(const char *fmt, ...)
error_f("socket \"%s\": %s", path, strerror(errno));
goto out;
}
- if (connect(fd, &addr, sizeof(addr)) != 0) {
+ if (connect(fd, (const struct sockaddr *)&addr, sizeof(addr)) != 0) {
+ if (connect(fd, (struct sockaddr *)&addr, sizeof(addr)) != 0) {
error_f("socket \"%s\" connect: %s", path, strerror(errno));
goto out;
}