diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2002-06-07 07:06:57 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2002-06-07 07:06:57 +0000 |
commit | 1b247c2bf9018c77563962ce8ddcd2c40b493c4d (patch) | |
tree | 77720ef4fa8feda6ec0e8acd3ea9fbfd4f64337e /net-mgmt | |
parent | Respect CC and CFLAGS (diff) |
Fix a potentially exploitable format string vulnerability and bump
PORTREVISION
Notes
Notes:
svn path=/head/; revision=60750
Diffstat (limited to 'net-mgmt')
-rw-r--r-- | net-mgmt/icmpmonitor/Makefile | 1 | ||||
-rw-r--r-- | net-mgmt/icmpmonitor/files/patch-aa | 20 |
2 files changed, 21 insertions, 0 deletions
diff --git a/net-mgmt/icmpmonitor/Makefile b/net-mgmt/icmpmonitor/Makefile index be42b8e60a33..a3917d77da36 100644 --- a/net-mgmt/icmpmonitor/Makefile +++ b/net-mgmt/icmpmonitor/Makefile @@ -7,6 +7,7 @@ PORTNAME= icmpmonitor PORTVERSION= 1.1 +PORTREVISION= 1 CATEGORIES= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= icmpmonitor diff --git a/net-mgmt/icmpmonitor/files/patch-aa b/net-mgmt/icmpmonitor/files/patch-aa new file mode 100644 index 000000000000..b13715ae0e7f --- /dev/null +++ b/net-mgmt/icmpmonitor/files/patch-aa @@ -0,0 +1,20 @@ +--- icmpmonitor.c.orig Fri Jun 7 00:05:24 2002 ++++ icmpmonitor.c Fri Jun 7 00:05:11 2002 +@@ -160,7 +160,7 @@ + /* protos */ + static void logopen(void); + static void logclose(void); +-static void log(int type, char *format, ...); ++static void log(int type, char *format, ...) __printflike(2, 3); + static int gethostaddr(const char *name); + static void read_hosts(const char *cfg_file_name); + static void init_hosts(void); +@@ -698,7 +698,7 @@ + # endif + #endif + #if HAVE_SYSLOG +- syslog(type,buffer); ++ syslog(type,"%s",buffer); + #endif + } else + { |