summaryrefslogtreecommitdiff
path: root/debian/patches
diff options
context:
space:
mode:
authorJustus Winter <justus@gnupg.org>2016-04-29 01:52:30 +0200
committerJustus Winter <justus@gnupg.org>2016-04-29 01:52:30 +0200
commit60e8013954e914fd145ad16fbec85624a487e329 (patch)
treefc4c5876802d4cf718bebb788f072a7fd054c99d /debian/patches
parent4fca1f983e97f5fd5c2845e1f45826f64064f5c2 (diff)
drop unused patch
Diffstat (limited to 'debian/patches')
-rw-r--r--debian/patches/startup-avoid-broken-puts.patch27
1 files changed, 0 insertions, 27 deletions
diff --git a/debian/patches/startup-avoid-broken-puts.patch b/debian/patches/startup-avoid-broken-puts.patch
deleted file mode 100644
index 76aae649..00000000
--- a/debian/patches/startup-avoid-broken-puts.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From f5321a63efad6e031952e1821c00965a42036730 Mon Sep 17 00:00:00 2001
-From: Justus Winter <4winter@informatik.uni-hamburg.de>
-Date: Sun, 12 Oct 2014 15:51:09 +0200
-Subject: [PATCH hurd] startup: avoid broken puts
-
----
- startup/startup.c | 7 +++++++
- 1 file changed, 7 insertions(+)
-
-diff --git a/startup/startup.c b/startup/startup.c
-index ff58270..e1f07a2 100644
---- a/startup/startup.c
-+++ b/startup/startup.c
-@@ -1663,3 +1663,10 @@ S_fsys_forward (mach_port_t server, mach_port_t requestor,
- {
- return EOPNOTSUPP;
- }
-+
-+/* XXX: puts is broken, it doesn't print the newline. */
-+int
-+puts (const char *s)
-+{
-+ return printf ("%s%c", s, '\n') == 0? EOF: 1;
-+}
---
-2.1.1
-