File: do-not-fix-uname.patch

package info (click to toggle)
procmail 3.24%2Breally3.22-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,380 kB
  • sloc: ansic: 9,888; sh: 1,920; makefile: 105
file content (16 lines) | stat: -rw-r--r-- 612 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
From: Santiago Vila <sanvila@debian.org>
Subject: Do not "fix" prototype for uname()
Bug-Debian: https://bugs.debian.org/1097653
X-Debian-version: 3.24+really3.22-5

--- procmail-3.24+really3.22.orig/src/includes.h
+++ procmail-3.24+really3.22/src/includes.h
@@ -331,7 +331,7 @@ extern int errno;
 
 #ifndef NOuname
 #ifndef P		  /* SINIX V5.23 has the wrong prototype for uname() */
-extern int uname();					 /* so we fix it :-) */
+/* extern int uname();					 /* so we fix it :-) */
 #define Uname(name)		((int(*)(struct utsname*))uname)(name)
 #else
 #define Uname(name)		uname(name)		    /* no fix needed */