diff options
author | kris <kris@FreeBSD.org> | 2002-08-23 14:29:43 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2002-08-23 14:29:43 +0800 |
commit | a026a0329196b71ccd398fd4df706cd5069b5239 (patch) | |
tree | d265cb938ad1655004f1c02c994fd3e5105f54dc /irc | |
parent | c449b656a43d0a9c373c5defdc805c84c7829e70 (diff) | |
download | freebsd-ports-gnome-a026a0329196b71ccd398fd4df706cd5069b5239.tar.gz freebsd-ports-gnome-a026a0329196b71ccd398fd4df706cd5069b5239.tar.zst freebsd-ports-gnome-a026a0329196b71ccd398fd4df706cd5069b5239.zip |
Fix a bug caused by passing insufficient arguments to strncmp(). This
was non-fatal for the compiler in -stable because strncmp() is not
prototyped, but it fails on -current. Bump PORTREVISION.
Diffstat (limited to 'irc')
-rw-r--r-- | irc/party/Makefile | 1 | ||||
-rw-r--r-- | irc/party/files/patch-ac | 11 |
2 files changed, 12 insertions, 0 deletions
diff --git a/irc/party/Makefile b/irc/party/Makefile index 6efc00a17268..ac49216bc4db 100644 --- a/irc/party/Makefile +++ b/irc/party/Makefile @@ -7,6 +7,7 @@ PORTNAME= party PORTVERSION= 2.12 +PORTREVISION= 1 CATEGORIES= irc MASTER_SITES= http://www.vocito.com/downloads/software/party/ \ ftp://ftp.vocito.com/pub/vocito.com/software/party/ diff --git a/irc/party/files/patch-ac b/irc/party/files/patch-ac new file mode 100644 index 000000000000..ee8a7c887d04 --- /dev/null +++ b/irc/party/files/patch-ac @@ -0,0 +1,11 @@ +--- proc.c.orig Thu Aug 22 23:22:19 2002 ++++ proc.c Thu Aug 22 23:22:31 2002 +@@ -50,7 +50,7 @@ + /* If a filter is running, and it is different, kill it */ + if (out_fd != 1) + { +- if (!strncmp(ofilter,opt[OPT_FILTER].str)) ++ if (!strncmp(ofilter,opt[OPT_FILTER].str, BFSZ)) + return(0); + else + stop_filter(); |