]> git.ipfire.org Git - people/ms/dma.git/commitdiff
drop 27-int-size.patch: already applied
authorSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 20:59:12 +0000 (22:59 +0200)
committerSimon Schubert <2@0x2c.org>
Thu, 28 Oct 2010 20:59:12 +0000 (22:59 +0200)
debian/patches/27-int-size.patch [deleted file]

diff --git a/debian/patches/27-int-size.patch b/debian/patches/27-int-size.patch
deleted file mode 100644 (file)
index 6ac3cd0..0000000
+++ /dev/null
@@ -1,17 +0,0 @@
-Description: Cast correctly to uintmax_t when using %PRIxMAX.
-Origin: other: http://svn.ringlet.net/svn/ringlet/mail/dma/
-Forwarded: yes
-Author: Peter Pentchev <roam@ringlet.net>
-Last-Update: 2010-06-21
-
---- a/spool.c
-+++ b/spool.c
-@@ -92,7 +92,7 @@
-        */
-       if (fstat(fd, &st) != 0)
-               goto fail;
--      if (asprintf(&queue->id, "%"PRIxMAX, st.st_ino) < 0)
-+      if (asprintf(&queue->id, "%"PRIxMAX, (uintmax_t)st.st_ino) < 0)
-               goto fail;
-       queue->mailf = fdopen(fd, "r+");