summaryrefslogtreecommitdiffhomepage
path: root/libs/sgi-webuci/boa-patches/120-setuid_fix.patch
diff options
context:
space:
mode:
authorSteven Barth <steven@midlink.org>2009-06-20 07:24:09 +0000
committerSteven Barth <steven@midlink.org>2009-06-20 07:24:09 +0000
commita90206c089832d54b1f5ffde940af2e07e10fed3 (patch)
treed007893342514a0c97e7332358dc1d1a7e449c57 /libs/sgi-webuci/boa-patches/120-setuid_fix.patch
parent7355eccc2114b17754a028cb98fc3eee18a232b6 (diff)
Drop webuci (obsolete)
Diffstat (limited to 'libs/sgi-webuci/boa-patches/120-setuid_fix.patch')
-rw-r--r--libs/sgi-webuci/boa-patches/120-setuid_fix.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/libs/sgi-webuci/boa-patches/120-setuid_fix.patch b/libs/sgi-webuci/boa-patches/120-setuid_fix.patch
deleted file mode 100644
index 1ea62b4c3d..0000000000
--- a/libs/sgi-webuci/boa-patches/120-setuid_fix.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: boa-0.94.13/src/boa.c
-===================================================================
---- boa-0.94.13.orig/src/boa.c 2002-07-23 17:50:29.000000000 +0200
-+++ boa-0.94.13/src/boa.c 2008-06-29 01:12:31.000000000 +0200
-@@ -222,7 +222,7 @@
- /* test for failed-but-return-was-successful setuid
- * http://www.securityportal.com/list-archive/bugtraq/2000/Jun/0101.html
- */
-- if (setuid(0) != -1) {
-+ if ((server_uid != 0) && (setuid(0) != -1)) {
- DIE("icky Linux kernel bug!");
- }
- } else {