summaryrefslogtreecommitdiff
path: root/mail/evolution/patches
diff options
context:
space:
mode:
Diffstat (limited to 'mail/evolution/patches')
-rw-r--r--mail/evolution/patches/patch-ad13
-rw-r--r--mail/evolution/patches/patch-ae13
-rw-r--r--mail/evolution/patches/patch-af13
-rw-r--r--mail/evolution/patches/patch-ag31
4 files changed, 0 insertions, 70 deletions
diff --git a/mail/evolution/patches/patch-ad b/mail/evolution/patches/patch-ad
deleted file mode 100644
index 3736f4aacf4..00000000000
--- a/mail/evolution/patches/patch-ad
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ad,v 1.8 2005/08/24 10:59:12 adrianp Exp $
-
---- calendar/gui/e-cal-component-preview.c.orig 2005-01-04 18:48:56.000000000 +0000
-+++ calendar/gui/e-cal-component-preview.c
-@@ -284,7 +284,7 @@ write_html (GtkHTMLStream *stream, ECal
- str = g_string_append_c (str, text.value[i]);
- }
-
-- gtk_html_stream_printf (stream, str->str);
-+ gtk_html_stream_printf (stream, "%s", str->str);
- g_string_free (str, TRUE);
- }
-
diff --git a/mail/evolution/patches/patch-ae b/mail/evolution/patches/patch-ae
deleted file mode 100644
index 9edf3a71cfb..00000000000
--- a/mail/evolution/patches/patch-ae
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-ae,v 1.5 2005/08/24 10:59:12 adrianp Exp $
-
---- calendar/gui/e-calendar-view.c.orig 2005-04-18 15:29:04.000000000 +0100
-+++ calendar/gui/e-calendar-view.c
-@@ -1079,7 +1079,7 @@ on_save_as (EPopup *ep, EPopupItem *pite
- return;
- }
-
-- fprintf (file, ical_string);
-+ fprintf (file, "%s", ical_string);
- g_free (ical_string);
- fclose (file);
-
diff --git a/mail/evolution/patches/patch-af b/mail/evolution/patches/patch-af
deleted file mode 100644
index 1282155f182..00000000000
--- a/mail/evolution/patches/patch-af
+++ /dev/null
@@ -1,13 +0,0 @@
-$NetBSD: patch-af,v 1.6 2005/08/24 10:59:12 adrianp Exp $
-
---- calendar/gui/e-calendar-table.c.orig 2005-01-25 11:18:16.000000000 +0000
-+++ calendar/gui/e-calendar-table.c
-@@ -1027,7 +1027,7 @@ e_calendar_table_on_save_as (EPopup *ep,
- return;
- }
-
-- fprintf (file, ical_string);
-+ fprintf (file, "%s", ical_string);
- g_free (ical_string);
- fclose (file);
- }
diff --git a/mail/evolution/patches/patch-ag b/mail/evolution/patches/patch-ag
deleted file mode 100644
index 2106c1d1781..00000000000
--- a/mail/evolution/patches/patch-ag
+++ /dev/null
@@ -1,31 +0,0 @@
-$NetBSD: patch-ag,v 1.7 2005/08/24 10:59:12 adrianp Exp $
-
---- addressbook/gui/widgets/eab-contact-display.c.orig 2005-04-28 10:23:01.000000000 +0100
-+++ addressbook/gui/widgets/eab-contact-display.c
-@@ -353,7 +353,7 @@ render_contact (GtkHTMLStream *html_stre
- accum_multival_attribute (accum, contact, _("Yahoo"), E_CONTACT_IM_YAHOO, YAHOO_ICON, 0);
-
- if (accum->len > 0)
-- gtk_html_stream_printf (html_stream, accum->str);
-+ gtk_html_stream_printf (html_stream, "%s", accum->str);
-
- end_block (html_stream);
-
-@@ -368,7 +368,7 @@ render_contact (GtkHTMLStream *html_stre
-
- if (accum->len > 0) {
- start_block (html_stream, _("work"));
-- gtk_html_stream_printf (html_stream, accum->str);
-+ gtk_html_stream_printf (html_stream, "%s", accum->str);
- end_block (html_stream);
- }
-
-@@ -383,7 +383,7 @@ render_contact (GtkHTMLStream *html_stre
-
- if (accum->len > 0) {
- start_block (html_stream, _("personal"));
-- gtk_html_stream_printf (html_stream, accum->str);
-+ gtk_html_stream_printf (html_stream, "%s", accum->str);
- end_block (html_stream);
- }
-