http://issues.apache.org/SpamAssassin/show_bug.cgi?id=3787
------- Additional Comments From [EMAIL PROTECTED] 2005-12-15 20:52 -------
and since i was apply against 5.8.5 (fc3) and 5.8.6 (fc4), this is what i
used.... if anyone feels like rebuilding their srpms
# cat perl-5.8.6-utf8.patch
--- utf8.c.orig 2005-12-15 08:06:59.000000000 -0600
+++ utf8.c 2005-12-15 08:06:32.000000000 -0600
@@ -1976,7 +1976,7 @@
if (u1)
to_utf8_fold(p1, foldbuf1, &foldlen1);
else {
- natbuf[0] = *p1;
+ uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p1)));
to_utf8_fold(natbuf, foldbuf1, &foldlen1);
}
q1 = foldbuf1;
@@ -1986,7 +1986,7 @@
if (u2)
to_utf8_fold(p2, foldbuf2, &foldlen2);
else {
- natbuf[0] = *p2;
+ uvuni_to_utf8(natbuf, (UV) NATIVE_TO_UNI(((UV)*p2)));
to_utf8_fold(natbuf, foldbuf2, &foldlen2);
}
q2 = foldbuf2;
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.