View | Details | Raw Unified | Return to bug 256561
Collapse All | Expand All

(-)b/security/sudo/Makefile (-1 / +1 lines)
Lines 1-7 Link Here
1
# Created by: erich@rrnet.com
1
# Created by: erich@rrnet.com
2
2
3
PORTNAME=	sudo
3
PORTNAME=	sudo
4
PORTVERSION=	1.9.7
4
PORTVERSION=	1.9.7p1
5
CATEGORIES=	security
5
CATEGORIES=	security
6
MASTER_SITES=	SUDO
6
MASTER_SITES=	SUDO
7
7
(-)b/security/sudo/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1620827684
1
TIMESTAMP = 1623449525
2
SHA256 (sudo-1.9.7.tar.gz) = 2bbe7c2d6699b84d950ef9a43f09d4d967b8bc244b73bc095c4202068ddbe549
2
SHA256 (sudo-1.9.7p1.tar.gz) = 391431f454e55121b60c6ded0fcf30ddb80d623d7d16a6d1907cfa6a0b91d8cf
3
SIZE (sudo-1.9.7.tar.gz) = 4194242
3
SIZE (sudo-1.9.7p1.tar.gz) = 4197591
(-)a/security/sudo/files/patch-lib_iolog_hostcheck.c (-25 lines)
Removed Link Here
1
From 96fb72e7cbac29086e51c57e5b629ac5a739e0e2 Mon Sep 17 00:00:00 2001
2
From: "Todd C. Miller" <Todd.Miller@sudo.ws>
3
Date: Wed, 12 May 2021 07:27:09 -0600
4
Subject: [PATCH] Explicitly include netinet/in.h for struct sockaddr_in and
5
 sockaddr+_in6. Fixes a compilation problem on FreeBSD.
6
7
---
8
 lib/iolog/hostcheck.c | 1 +
9
 1 file changed, 1 insertion(+)
10
11
diff --git lib/iolog/hostcheck.c lib/iolog/hostcheck.c
12
index 0dee14b79..3eeabd262 100644
13
--- lib/iolog/hostcheck.c
14
+++ lib/iolog/hostcheck.c
15
@@ -24,6 +24,7 @@
16
 #if defined(HAVE_OPENSSL)
17
 # include <sys/types.h>
18
 # include <sys/socket.h>
19
+# include <netinet/in.h>
20
 # include <arpa/inet.h>
21
 # include <stdlib.h>
22
 # include <string.h>
23
-- 
24
2.31.1
25

Return to bug 256561