summaryrefslogtreecommitdiff
path: root/net/v6eval/files/patch-lib_Pz_MvFunction.cc
diff options
context:
space:
mode:
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, 0 insertions, 15 deletions
diff --git a/net/v6eval/files/patch-lib_Pz_MvFunction.cc b/net/v6eval/files/patch-lib_Pz_MvFunction.cc
deleted file mode 100644
index 20a6ba0340d7..000000000000
--- a/net/v6eval/files/patch-lib_Pz_MvFunction.cc
+++ /dev/null
@@ -1,15 +0,0 @@
---- 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;
- }
- }