diff options
author | kris <kris@FreeBSD.org> | 2002-06-07 15:06:57 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-06-07 15:06:57 +0800 |
commit | 17cac00384a89cc12309776cf6ac0ffc0f2a8642 (patch) | |
tree | 7791ec9d8b0ba95851e9affe2fb1c26e56515d82 /net-mgmt | |
parent | 86f6aaadefdc90570e46b7bdd7c9a735d692784a (diff) | |
download | freebsd-ports-gnome-17cac00384a89cc12309776cf6ac0ffc0f2a8642.tar.gz freebsd-ports-gnome-17cac00384a89cc12309776cf6ac0ffc0f2a8642.tar.zst freebsd-ports-gnome-17cac00384a89cc12309776cf6ac0ffc0f2a8642.zip |
Fix a potentially exploitable format string vulnerability and bump
PORTREVISION
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 + { |