Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-ftp/vsftpd/files: vsftpd-2.0.7-uclibc.patch vsftpd-2.0.5-anon-upload-umask.patch
Date: Fri, 26 Dec 2008 16:56:39
Message-Id: E1LGFzI-0008GE-OX@stork.gentoo.org
1 armin76 08/12/26 16:56:36
2
3 Added: vsftpd-2.0.7-uclibc.patch
4 Removed: vsftpd-2.0.5-anon-upload-umask.patch
5 Log:
6 Also add a patch from Debian to fix uclibc build, bug #241720
7 (Portage version: 2.1.6.3/cvs/Linux 2.6.27-gentoo-r7 i686)
8
9 Revision Changes Path
10 1.1 net-ftp/vsftpd/files/vsftpd-2.0.7-uclibc.patch
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/vsftpd/files/vsftpd-2.0.7-uclibc.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/net-ftp/vsftpd/files/vsftpd-2.0.7-uclibc.patch?rev=1.1&content-type=text/plain
14
15 Index: vsftpd-2.0.7-uclibc.patch
16 ===================================================================
17 --- sysutil.c.orig 2008-10-13 10:07:34.000000000 +0200
18 +++ sysutil.c 2008-10-13 10:08:00.000000000 +0200
19 @@ -601,7 +601,7 @@
20 vsf_sysutil_wait_exited_normally(
21 const struct vsf_sysutil_wait_retval* p_waitret)
22 {
23 - return WIFEXITED(p_waitret->exit_status);
24 + return WIFEXITED((struct vsf_sysutil_wait_retval *)p_waitret->exit_status);
25 }
26
27 int
28 @@ -611,7 +611,7 @@
29 {
30 bug("not a normal exit in vsf_sysutil_wait_get_exitcode");
31 }
32 - return WEXITSTATUS(p_waitret->exit_status);
33 + return WEXITSTATUS((struct vsf_sysutil_wait_retval *)p_waitret->exit_status);
34 }
35
36 void