summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'net-analyzer/nttcp')
-rw-r--r--net-analyzer/nttcp/ChangeLog6
-rw-r--r--net-analyzer/nttcp/files/nttcp-1.47-format-security.patch2
2 files changed, 6 insertions, 2 deletions
diff --git a/net-analyzer/nttcp/ChangeLog b/net-analyzer/nttcp/ChangeLog
index 89ce88326cc9..b88646b326f0 100644
--- a/net-analyzer/nttcp/ChangeLog
+++ b/net-analyzer/nttcp/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for net-analyzer/nttcp
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.20 2014/07/15 00:48:53 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-analyzer/nttcp/ChangeLog,v 1.21 2014/07/21 15:26:31 jer Exp $
+
+ 21 Jul 2014; Jeroen Roovers <jer@gentoo.org>
+ files/nttcp-1.47-format-security.patch:
+ Add newline.
*nttcp-1.47-r2 (15 Jul 2014)
diff --git a/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch b/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch
index 7f1e4d4aa690..c1d5970856e7 100644
--- a/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch
+++ b/net-analyzer/nttcp/files/nttcp-1.47-format-security.patch
@@ -5,7 +5,7 @@
void Exit(char *s, int ret) {
- syslog(LOG_DEBUG, s);
-+ syslog(LOG_DEBUG, "%s", s);
++ syslog(LOG_DEBUG, "%s\n", s);
fMessage(stderr,s);
exit(ret);
}