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 */
|