summaryrefslogtreecommitdiff
path: root/net/v6eval/files/patch-lib_Pz_MvFunction.cc
diff options
context:
space:
mode:
authorHiroki Sato <hrs@FreeBSD.org>2013-06-16 02:37:46 +0000
committerHiroki Sato <hrs@FreeBSD.org>2013-06-16 02:37:46 +0000
commita14da88b51b0f28b150eb5ac7181d11cbbcb5eb2 (patch)
tree6b4f932f596f778acb5e8a08a1c707e1302b0885 /net/v6eval/files/patch-lib_Pz_MvFunction.cc
parent- Fix configuring ezmlm-idx-7 mailing lists. Only apply the (diff)
- Add patches to fix type mismatch. Bump PORTREVISION becuase some affect
the result binaries. - Fix build on head after byacc 20130304.
Notes
Notes: svn path=/head/; revision=321022
Diffstat (limited to 'net/v6eval/files/patch-lib_Pz_MvFunction.cc')
-rw-r--r--net/v6eval/files/patch-lib_Pz_MvFunction.cc15
1 files changed, 15 insertions, 0 deletions
diff --git a/net/v6eval/files/patch-lib_Pz_MvFunction.cc b/net/v6eval/files/patch-lib_Pz_MvFunction.cc
new file mode 100644
index 000000000000..20a6ba0340d7
--- /dev/null
+++ b/net/v6eval/files/patch-lib_Pz_MvFunction.cc
@@ -0,0 +1,15 @@
+--- lib/Pz/MvFunction.cc.orig 2013-06-16 10:37:30.000000000 +0900
++++ lib/Pz/MvFunction.cc 2013-06-16 10:38:07.000000000 +0900
+@@ -352,9 +352,9 @@
+ uint32_t d = 0;
+
+ for(d = 0; d < buflen; d ++) {
+- if((buf[d] < '0') || (buf[d] > '9') &&
+- (buf[d] < 'A') || (buf[d] > 'F') &&
+- (buf[d] < 'a') || (buf[d] > 'f')) {
++ if(((buf[d] < '0') || (buf[d] > '9')) &&
++ ((buf[d] < 'A') || (buf[d] > 'F')) &&
++ ((buf[d] < 'a') || (buf[d] > 'f'))) {
+ return false;
+ }
+ }