aboutsummaryrefslogtreecommitdiff
path: root/chinese/gcin-devel/files
diff options
context:
space:
mode:
authorRong-En Fan <rafan@FreeBSD.org>2007-01-04 03:56:41 +0000
committerRong-En Fan <rafan@FreeBSD.org>2007-01-04 03:56:41 +0000
commit39d8e34be20b1a7bf41882c50023553f61de2493 (patch)
treed02dda1b5f034f9c495e283f2404c82ba18be191 /chinese/gcin-devel/files
parentbe2ff4ae7cca1a004ebb1b9b1260a53fdc486b63 (diff)
Notes
Diffstat (limited to 'chinese/gcin-devel/files')
-rw-r--r--chinese/gcin-devel/files/patch-gcin2tab.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/chinese/gcin-devel/files/patch-gcin2tab.c b/chinese/gcin-devel/files/patch-gcin2tab.c
deleted file mode 100644
index 0eb3e39b7121..000000000000
--- a/chinese/gcin-devel/files/patch-gcin2tab.c
+++ /dev/null
@@ -1,26 +0,0 @@
---- gcin2tab.c.orig Sun Dec 3 11:05:26 2006
-+++ gcin2tab.c Sun Dec 3 11:08:36 2006
-@@ -129,7 +129,10 @@
- int d;
- if ((d = a->key - b->key)) return d;
-
-- return memcmp(a->ch ,b->ch, CH_SZ);
-+ d = memcmp(a->ch ,b->ch, CH_SZ);
-+ if (d) return d;
-+
-+ return a->oseq - b->oseq;
- }
-
- int qcmp2_64(const void *aa, const void *bb)
-@@ -139,7 +142,10 @@
- if (a->key > b->key) return 1;
- if (a->key < b->key) return -1;
-
-- return memcmp(a->ch ,b->ch, CH_SZ);
-+ int d = memcmp(a->ch ,b->ch, CH_SZ);
-+ if (d) return d;
-+
-+ return a->oseq - b->oseq;
- }
-
- int qcmp(const void *aa, const void *bb)