openbsd-ports/net/sixxs-heartbeatd/patches/patch-client_hb_c
naddy b53d1508cf getaddrinfo(3) returns non-zero on error, not only negative values.
From: Meno Abels <meno.abels@adviser.com>

Also update plist.
2004-08-10 16:11:30 +00:00

22 lines
825 B
Plaintext

$OpenBSD: patch-client_hb_c,v 1.1 2004/08/10 16:11:30 naddy Exp $
--- client/hb.c.orig Tue Aug 10 18:06:17 2004
+++ client/hb.c Tue Aug 10 18:06:50 2004
@@ -91,7 +91,7 @@ int heartbeat_socket(
hints.ai_socktype = SOCK_DGRAM;
// Get the POP IPv4 into a sockaddr
- if (getaddrinfo(sIPv4POP, PORT, &hints, &res) < 0)
+ if (getaddrinfo(sIPv4POP, PORT, &hints, &res) != 0)
{
hblog(LOG_ERR, "Couldn't resolve POP ip %s\n", sIPv4POP);
close(sockfd);
@@ -147,7 +147,7 @@ int heartbeat_socket(
hints.ai_socktype = SOCK_DGRAM;
// Get the POP IPv4 into a sockaddr
- if (getaddrinfo(sIPv4LocalResolve, NULL, &hints, &res) < 0)
+ if (getaddrinfo(sIPv4LocalResolve, NULL, &hints, &res) != 0)
{
hblog(LOG_ERR, "Couldn't resolve POP ip %s\n", sIPv4POP);
// We return a -1, thus the app will keep beating