diff options
author | Norikatsu Shigemura <nork@FreeBSD.org> | 2008-09-20 09:59:24 +0000 |
---|---|---|
committer | Norikatsu Shigemura <nork@FreeBSD.org> | 2008-09-20 09:59:24 +0000 |
commit | 4912d6624e9bfc91d4b2c18f5e9f7667f2bef849 (patch) | |
tree | 46af9679cc28667a918bdd0109806bef5f517f71 | |
parent | - add Security patches (diff) |
Fix crash issue of cannaserver.
Obtained from: NetBSD, Canna CVS Repositry
Approved by: portmgr (marcus)
Committed at: the 27th EBUG Meeting at Bandai, Niigata, Japan (Powered by Daisuke)
Committed with: EBUG Members (hre, karl, daigu, high, mikio, kaw and nork@)
Notes
Notes:
svn path=/head/; revision=220439
-rw-r--r-- | japanese/Canna/Makefile | 2 | ||||
-rw-r--r-- | japanese/Canna/files/patch-lib-RK-ncache.c | 11 | ||||
-rw-r--r-- | japanese/canna-lib/Makefile | 2 | ||||
-rw-r--r-- | japanese/canna-lib/files/patch-lib-RK-ncache.c | 11 | ||||
-rw-r--r-- | japanese/canna-server/Makefile | 2 | ||||
-rw-r--r-- | japanese/canna-server/files/patch-lib-RK-ncache.c | 11 |
6 files changed, 36 insertions, 3 deletions
diff --git a/japanese/Canna/Makefile b/japanese/Canna/Makefile index 939e4aa26b90..461d32e52ed8 100644 --- a/japanese/Canna/Makefile +++ b/japanese/Canna/Makefile @@ -8,7 +8,7 @@ PORTNAME= Canna PORTVERSION= 3.7p3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR= canna/9565/ diff --git a/japanese/Canna/files/patch-lib-RK-ncache.c b/japanese/Canna/files/patch-lib-RK-ncache.c new file mode 100644 index 000000000000..1695441e8b3b --- /dev/null +++ b/japanese/Canna/files/patch-lib-RK-ncache.c @@ -0,0 +1,11 @@ +--- lib/RK/ncache.c.orig 2003-09-17 17:50:52.000000000 +0900 ++++ lib/RK/ncache.c 2008-09-20 01:46:07.000000000 +0900 +@@ -27,7 +27,7 @@ + #include "RKintern.h" + + #define NCHASH 101 +-#define hash(x) ((int)((x)%NCHASH)) ++#define hash(x) ((int)(((unsigned long)(x))%NCHASH)) + + static struct ncache Nchash[NCHASH]; + static struct ncache Ncfree; diff --git a/japanese/canna-lib/Makefile b/japanese/canna-lib/Makefile index 939e4aa26b90..461d32e52ed8 100644 --- a/japanese/canna-lib/Makefile +++ b/japanese/canna-lib/Makefile @@ -8,7 +8,7 @@ PORTNAME= Canna PORTVERSION= 3.7p3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR= canna/9565/ diff --git a/japanese/canna-lib/files/patch-lib-RK-ncache.c b/japanese/canna-lib/files/patch-lib-RK-ncache.c new file mode 100644 index 000000000000..1695441e8b3b --- /dev/null +++ b/japanese/canna-lib/files/patch-lib-RK-ncache.c @@ -0,0 +1,11 @@ +--- lib/RK/ncache.c.orig 2003-09-17 17:50:52.000000000 +0900 ++++ lib/RK/ncache.c 2008-09-20 01:46:07.000000000 +0900 +@@ -27,7 +27,7 @@ + #include "RKintern.h" + + #define NCHASH 101 +-#define hash(x) ((int)((x)%NCHASH)) ++#define hash(x) ((int)(((unsigned long)(x))%NCHASH)) + + static struct ncache Nchash[NCHASH]; + static struct ncache Ncfree; diff --git a/japanese/canna-server/Makefile b/japanese/canna-server/Makefile index 939e4aa26b90..461d32e52ed8 100644 --- a/japanese/canna-server/Makefile +++ b/japanese/canna-server/Makefile @@ -8,7 +8,7 @@ PORTNAME= Canna PORTVERSION= 3.7p3 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= japanese MASTER_SITES= ${MASTER_SITE_SOURCEFORGE_JP} MASTER_SITE_SUBDIR= canna/9565/ diff --git a/japanese/canna-server/files/patch-lib-RK-ncache.c b/japanese/canna-server/files/patch-lib-RK-ncache.c new file mode 100644 index 000000000000..1695441e8b3b --- /dev/null +++ b/japanese/canna-server/files/patch-lib-RK-ncache.c @@ -0,0 +1,11 @@ +--- lib/RK/ncache.c.orig 2003-09-17 17:50:52.000000000 +0900 ++++ lib/RK/ncache.c 2008-09-20 01:46:07.000000000 +0900 +@@ -27,7 +27,7 @@ + #include "RKintern.h" + + #define NCHASH 101 +-#define hash(x) ((int)((x)%NCHASH)) ++#define hash(x) ((int)(((unsigned long)(x))%NCHASH)) + + static struct ncache Nchash[NCHASH]; + static struct ncache Ncfree; |