From 2d01177c9ef5d01cf123356c6ed329c3550d2a2a Mon Sep 17 00:00:00 2001 From: Thierry Vignaud Date: Thu, 13 Mar 2008 15:50:31 +0000 Subject: - fix changing UID on forking (spotted by salem) --- perl-install/NEWS | 2 ++ perl-install/run_program.pm | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/perl-install/NEWS b/perl-install/NEWS index 8281156c4..440432933 100644 --- a/perl-install/NEWS +++ b/perl-install/NEWS @@ -1,3 +1,5 @@ +- fix changing UID on forking + Version 10.12 - 13 March 2008 - fix gurpmi path (#38679) diff --git a/perl-install/run_program.pm b/perl-install/run_program.pm index 11ebc2289..425ad16cf 100644 --- a/perl-install/run_program.pm +++ b/perl-install/run_program.pm @@ -111,7 +111,7 @@ sub raw { } else { if ($options->{setuid}) { require POSIX; - POSIX::setuid($options->{set_uid}); + POSIX::setuid($options->{setuid}); } sub die_exit { -- cgit v1.2.1