wok annotate portmap/stuff/portmap-5beta-glibc_errno_fix-1.patch @ rev 14774

Up xorg-libXi (1.7.1.901), see http://www.x.org/wiki/Development/Security/Advisory-2013-05-23
author Pascal Bellard <pascal.bellard@slitaz.org>
date Sun Jun 30 10:36:53 2013 +0200 (2013-06-30)
parents
children
rev   line source
erjo@171 1 Submitted By: Tushar Teredesai <tushar@linuxfromscratch.org>
erjo@171 2 Date: 2003-10-04
erjo@171 3 Initial Package Version: 5beta
erjo@171 4 Origin: None
erjo@171 5 Description: Fix compilation with recent glibc versions.
erjo@171 6 --- portmap_5beta/portmap.c 2003-03-10 12:32:26.000000000 -0600
erjo@171 7 +++ portmap_5beta/portmap.c.new 2003-03-10 12:38:01.000000000 -0600
erjo@171 8 @@ -129,7 +129,8 @@
erjo@171 9 static void callit();
erjo@171 10 struct pmaplist *pmaplist;
erjo@171 11 int debugging = 0;
erjo@171 12 -extern int errno;
erjo@171 13 +#include <errno.h>
erjo@171 14 +/* extern int errno; */
erjo@171 15
erjo@171 16 #include "pmap_check.h"
erjo@171 17