From 3e43c7bc35f5b2358cb2956c0ef9f90b4c2f7a96 Mon Sep 17 00:00:00 2001 From: itojun Date: Thu, 29 May 2003 01:02:27 +0000 Subject: upgrade to apache 2.0.46. fixes two vulnerabilities: http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0245 http://cve.mitre.org/cgi-bin/cvename.cgi?name=CAN-2003-0189 --- devel/apr/patches/patch-ae | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 devel/apr/patches/patch-ae (limited to 'devel/apr/patches') diff --git a/devel/apr/patches/patch-ae b/devel/apr/patches/patch-ae deleted file mode 100644 index 2fb6d34ba04..00000000000 --- a/devel/apr/patches/patch-ae +++ /dev/null @@ -1,22 +0,0 @@ -$NetBSD: patch-ae,v 1.1.1.1 2003/05/25 08:55:19 epg Exp $ - -Index: threadproc/unix/proc.c -=================================================================== -RCS file: /home/cvspublic/apr/threadproc/unix/proc.c,v -retrieving revision 1.62 -diff -a -u -r1.62 proc.c ---- threadproc/unix/proc.c 6 Jan 2003 23:44:38 -0000 1.62 -+++ apr/threadproc/unix/proc.c -@@ -474,7 +474,11 @@ - waitpid_options |= WNOHANG; - } - -- if ((pstatus = waitpid(proc->pid, &exit_int, waitpid_options)) > 0) { -+ do { -+ pstatus = waitpid(proc->pid, &exit_int, waitpid_options); -+ } while (pstatus < 0 && errno == EINTR); -+ -+ if (pstatus > 0) { - proc->pid = pstatus; - - if (WIFEXITED(exit_int)) { -- cgit v1.2.3