View | Details | Raw Unified | Return to bug 160401 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/home/pi/myp/security/strongswan/Makefile (-1 / +1 lines)
Lines 5-11 Link Here
5
# $FreeBSD: ports/security/strongswan/Makefile,v 1.3 2011/04/29 12:24:55 culot Exp $
5
# $FreeBSD: ports/security/strongswan/Makefile,v 1.3 2011/04/29 12:24:55 culot Exp $
6
6
7
PORTNAME=	strongswan
7
PORTNAME=	strongswan
8
PORTVERSION=	4.5.1
8
PORTVERSION=	4.5.3
9
CATEGORIES=	security
9
CATEGORIES=	security
10
MASTER_SITES=	http://download.strongswan.org/ \
10
MASTER_SITES=	http://download.strongswan.org/ \
11
		http://download2.strongswan.org/
11
		http://download2.strongswan.org/
(-)/usr/home/pi/myp/security/strongswan/distinfo (-2 / +2 lines)
Lines 1-2 Link Here
1
SHA256 (strongswan-4.5.1.tar.bz2) = 252d7369d94aa2d79e6fad078853b07ca897ea811ab1e1a2b008bcec0d1e758a
1
SHA256 (strongswan-4.5.3.tar.bz2) = a59fa0d9820fb06a3c848f4537b9256d2067265ad10e1b007b79f3b16279f1ff
2
SIZE (strongswan-4.5.1.tar.bz2) = 3254264
2
SIZE (strongswan-4.5.3.tar.bz2) = 3299522
(-)/usr/home/pi/myp/security/strongswan/files/patch-src__libcharon__bus__listeners__sys_logger.c (-5 / +5 lines)
Lines 1-5 Link Here
1
--- srcold/libcharon/bus/listeners/sys_logger.c	2011-03-10 20:50:01.000000000 +0200
1
--- src/libcharon/bus/listeners/sys_logger.c-orig	2011-09-02 19:33:54.000000000 +0200
2
+++ src/libcharon/bus/listeners/sys_logger.c	2011-03-10 20:53:59.000000000 +0200
2
+++ src/libcharon/bus/listeners/sys_logger.c	2011-09-02 19:38:59.000000000 +0200
3
@@ -79,13 +79,15 @@
3
@@ -79,13 +79,15 @@
4
 		/* do a syslog with every line */
4
 		/* do a syslog with every line */
5
 		while (current)
5
 		while (current)
Lines 10-18 Link Here
10
 			{
10
 			{
11
 				*(next++) = '\0';
11
 				*(next++) = '\0';
12
 			}
12
 			}
13
-			syslog(this->facility|LOG_INFO, "%.2d[%N]%s %s\n",
13
-			syslog(this->facility|LOG_INFO, "%.2d[%s]%s %s\n",
14
+			snprintf(tmp, 8192, "%.2d[%N]%s %s\n",
14
+			snprintf(tmp, 8192, "%.2d[%s]%s %s\n",
15
 				   thread, debug_names, group, namestr, current);
15
 				   thread, groupstr, namestr, current);
16
+			syslog(this->facility|LOG_INFO, tmp);
16
+			syslog(this->facility|LOG_INFO, tmp);
17
 			current = next;
17
 			current = next;
18
 		}
18
 		}

Return to bug 160401