[Pkg-citadel-commit] r119 - in libcitadel/trunk/debian: . patches
dothebart-guest at alioth.debian.org
dothebart-guest at alioth.debian.org
Sat Aug 2 22:07:27 UTC 2008
Author: dothebart-guest
Date: 2008-08-02 22:07:26 +0000 (Sat, 02 Aug 2008)
New Revision: 119
Added:
libcitadel/trunk/debian/patches/
libcitadel/trunk/debian/patches/r6413_64_bit_cleanness.diff
libcitadel/trunk/debian/patches/r6475_close_dirhandle.diff
libcitadel/trunk/debian/patches/series
Modified:
libcitadel/trunk/debian/changelog
libcitadel/trunk/debian/control
Log:
* add dependency to quilt
* [r6413] added upstream prepatch; 64 bit cleanness
* [r6475] added upstream prepatch; close dirhandle after use
Modified: libcitadel/trunk/debian/changelog
===================================================================
--- libcitadel/trunk/debian/changelog 2008-08-02 21:52:59 UTC (rev 118)
+++ libcitadel/trunk/debian/changelog 2008-08-02 22:07:26 UTC (rev 119)
@@ -1,5 +1,14 @@
libcitadel (7.37-1) unstable; urgency=low
+ [Wilfried Goesgens]
+ * add dependency to quilt
+ * [r6413] added upstream prepatch; 64 bit cleanness
+ * [r6475] added upstream prepatch; close dirhandle after use
+
+ -- Michael Meskes <meskes at debian.org> Fri, 20 Jun 2008 12:16:53 +0200
+
+libcitadel (7.37-1) unstable; urgency=low
+
* New upstream version.
-- Michael Meskes <meskes at debian.org> Fri, 20 Jun 2008 12:16:53 +0200
Modified: libcitadel/trunk/debian/control
===================================================================
--- libcitadel/trunk/debian/control 2008-08-02 21:52:59 UTC (rev 118)
+++ libcitadel/trunk/debian/control 2008-08-02 22:07:26 UTC (rev 119)
@@ -3,7 +3,7 @@
Priority: extra
Maintainer: Debian Citadel Team <pkg-citadel-devel at lists.alioth.debian.org>
Uploaders: Wilfried Goesgens <w.goesgens at outgesourced.org>, Michael Meskes <meskes at debian.org>, Alexander Wirt <formorer at debian.org>
-Build-Depends: debhelper (>= 5)
+Build-Depends: debhelper (>= 5), quilt (>= 0.40)
Standards-Version: 3.8.0
Homepage: http://citadel.org
Added: libcitadel/trunk/debian/patches/r6413_64_bit_cleanness.diff
===================================================================
--- libcitadel/trunk/debian/patches/r6413_64_bit_cleanness.diff (rev 0)
+++ libcitadel/trunk/debian/patches/r6413_64_bit_cleanness.diff 2008-08-02 22:07:26 UTC (rev 119)
@@ -0,0 +1,16 @@
+Index: lib/vnote.c
+===================================================================
+--- lib/vnote.c (revision 6412)
++++ lib/vnote.c (revision 6413)
+@@ -96,9 +96,8 @@
+ *encoded_value++ = 0;
+
+ /* any qualifiers? (look for a semicolon) */
+- is_base64 = (int) bmstrcasestr(thisline, "encoding=base64");
+- is_quoted_printable = (int) bmstrcasestr(thisline,
+- "encoding=quoted-printable");
++ is_base64 = bmstrcasestr(thisline, "encoding=base64") ? 1 : 0;
++ is_quoted_printable = bmstrcasestr(thisline, "encoding=quoted-printable") ? 1 : 0;
+
+ char *semicolon_pos = strchr(thisline, ';');
+ if (semicolon_pos) {
Added: libcitadel/trunk/debian/patches/r6475_close_dirhandle.diff
===================================================================
--- libcitadel/trunk/debian/patches/r6475_close_dirhandle.diff (rev 0)
+++ libcitadel/trunk/debian/patches/r6475_close_dirhandle.diff 2008-08-02 22:07:26 UTC (rev 119)
@@ -0,0 +1,12 @@
+Index: lib/mime_parser.c
+===================================================================
+--- lib/mime_parser.c (revision 6474)
++++ lib/mime_parser.c (revision 6475)
+@@ -837,6 +837,7 @@
+ Put(IconHash, Icon->FlatName, d_without_ext, Icon, DeleteIcon);
+ // PrintHash(IconHash, PrintFlat, PrintFile);
+ }
++ closedir(filedir);
+ return 1;
+ }
+
Added: libcitadel/trunk/debian/patches/series
===================================================================
--- libcitadel/trunk/debian/patches/series (rev 0)
+++ libcitadel/trunk/debian/patches/series 2008-08-02 22:07:26 UTC (rev 119)
@@ -0,0 +1,3 @@
+r6413_64_bit_cleanness.diff
+r6475_close_dirhandle.diff
+series
More information about the Pkg-citadel-commit
mailing list