summaryrefslogtreecommitdiff
path: root/debian/patches/0007-startup-fix-the-declaration-of-the-_server-functions.patch
diff options
context:
space:
mode:
authorJustus Winter <4winter@informatik.uni-hamburg.de>2014-09-02 23:18:57 +0200
committerJustus Winter <4winter@informatik.uni-hamburg.de>2014-09-02 23:18:57 +0200
commitb729fbad76622a759c97013989a7df489addfde8 (patch)
tree0ce7b316d031d0d9925215e8b0f5b968df62939a /debian/patches/0007-startup-fix-the-declaration-of-the-_server-functions.patch
parenta4a8673373d080d6947a7a026af0ec9932ce96f1 (diff)
add patch series
Diffstat (limited to 'debian/patches/0007-startup-fix-the-declaration-of-the-_server-functions.patch')
-rw-r--r--debian/patches/0007-startup-fix-the-declaration-of-the-_server-functions.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/debian/patches/0007-startup-fix-the-declaration-of-the-_server-functions.patch b/debian/patches/0007-startup-fix-the-declaration-of-the-_server-functions.patch
new file mode 100644
index 00000000..4d901369
--- /dev/null
+++ b/debian/patches/0007-startup-fix-the-declaration-of-the-_server-functions.patch
@@ -0,0 +1,28 @@
+From 4565524594612d6cd8267e3a74806a0c362636d0 Mon Sep 17 00:00:00 2001
+From: Justus Winter <4winter@informatik.uni-hamburg.de>
+Date: Wed, 18 Sep 2013 23:16:34 +0200
+Subject: [PATCH 7/8] startup: fix the declaration of the *_server functions
+
+* startup/startup.c (demuxer): Fix the declaration of the server functions.
+---
+ startup/startup.c | 4 +++-
+ 1 file changed, 3 insertions(+), 1 deletion(-)
+
+diff --git a/startup/startup.c b/startup/startup.c
+index 0a33855..fe8471d 100644
+--- a/startup/startup.c
++++ b/startup/startup.c
+@@ -501,7 +501,9 @@ static int
+ demuxer (mach_msg_header_t *inp,
+ mach_msg_header_t *outp)
+ {
+- extern int notify_server (), startup_server (), msg_server ();
++ extern int notify_server (mach_msg_header_t *, mach_msg_header_t *);
++ extern int startup_server (mach_msg_header_t *, mach_msg_header_t *);
++ extern int msg_server (mach_msg_header_t *, mach_msg_header_t *);
+
+ return (notify_server (inp, outp) ||
+ msg_server (inp, outp) ||
+--
+2.1.0
+