aboutsummaryrefslogtreecommitdiff
path: root/www/seamonkey/files/patch-257314
diff options
context:
space:
mode:
Diffstat (limited to 'www/seamonkey/files/patch-257314')
-rw-r--r--www/seamonkey/files/patch-25731431
1 files changed, 0 insertions, 31 deletions
diff --git a/www/seamonkey/files/patch-257314 b/www/seamonkey/files/patch-257314
deleted file mode 100644
index 8bcc707b9dd9..000000000000
--- a/www/seamonkey/files/patch-257314
+++ /dev/null
@@ -1,31 +0,0 @@
-Index: nsVCardObj.cpp
-===================================================================
-RCS file: /cvsroot/mozilla/mailnews/addrbook/src/nsVCardObj.cpp,v
-retrieving revision 1.2
-retrieving revision 1.2.24.1
-diff -u -r1.2 -r1.2.24.1
---- mailnews/addrbook/src/nsVCardObj.cpp 14 Sep 2003 21:45:58 -0000 1.2
-+++ mailnews/addrbook/src/nsVCardObj.cpp 31 Aug 2004 07:44:25 -0000 1.2.24.1
-@@ -1344,16 +1344,13 @@
-
- static void writeGroup(OFile *fp, VObject *o)
- {
-- char buf1[256];
-- char buf2[256];
-- PL_strcpy(buf1,NAME_OF(o));
-- while ((o=isAPropertyOf(o,VCGroupingProp)) != 0) {
-- PL_strcpy(buf2,STRINGZ_VALUE_OF(o));
-- PL_strcat(buf2,".");
-- PL_strcat(buf2,buf1);
-- PL_strcpy(buf1,buf2);
-+ nsCAutoString buf(NAME_OF(o));
-+
-+ while ((o=isAPropertyOf(o,VCGroupingProp)) != 0) {
-+ buf.Insert(NS_LITERAL_CSTRING("."), 0);
-+ buf.Insert(STRINGZ_VALUE_OF(o), 0);
- }
-- appendsOFile(fp,buf1);
-+ appendsOFile(fp, buf.get());
- }
-
- static int inList(const char **list, const char *s)