-
Notifications
You must be signed in to change notification settings - Fork 250
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upstream PR. Signed-off-by: Rosen Penev <[email protected]>
- Loading branch information
Showing
2 changed files
with
22 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
From f6a28e1f2164e2550226680b3646e3434a6aa668 Mon Sep 17 00:00:00 2001 | ||
From: Victor Seva <[email protected]> | ||
Date: Mon, 25 Mar 2024 16:23:06 +0100 | ||
Subject: [PATCH] add missing include for inet_pton() | ||
|
||
Reported at https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=1067666 | ||
--- | ||
src/transport_hep.c | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
--- a/src/transport_hep.c | ||
+++ b/src/transport_hep.c | ||
@@ -19,7 +19,7 @@ | ||
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
* | ||
*/ | ||
- | ||
+#include <arpa/inet.h> | ||
#include <sys/socket.h> | ||
#include <stdlib.h> | ||
#include <stdio.h> |