diff options
author | Eray Aslan <eras@gentoo.org> | 2015-02-23 08:52:19 +0000 |
---|---|---|
committer | Eray Aslan <eras@gentoo.org> | 2015-02-23 08:52:19 +0000 |
commit | db25a6c3b668830825ec94f4839ace2dd701c2e7 (patch) | |
tree | 19ec7a0157c7d560497d77377f037d3b2fcb15f2 /net-proxy/squid/files | |
parent | Fix jflex dependency following slot change. (diff) | |
download | gentoo-2-db25a6c3b668830825ec94f4839ace2dd701c2e7.tar.gz gentoo-2-db25a6c3b668830825ec94f4839ace2dd701c2e7.tar.bz2 gentoo-2-db25a6c3b668830825ec94f4839ace2dd701c2e7.zip |
Version bump. Perl-5.20 fix - bug #539500
(Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 0x77F1F175586A3B1F)
Diffstat (limited to 'net-proxy/squid/files')
-rw-r--r-- | net-proxy/squid/files/squid-13934_13933.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/net-proxy/squid/files/squid-13934_13933.patch b/net-proxy/squid/files/squid-13934_13933.patch new file mode 100644 index 000000000000..fa1d91dbbe14 --- /dev/null +++ b/net-proxy/squid/files/squid-13934_13933.patch @@ -0,0 +1,29 @@ +=== modified file 'helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.pl.in' +--- helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.pl.in 2015-01-13 07:25:36 +0000 ++++ helpers/external_acl/wbinfo_group/ext_wbinfo_group_acl.pl.in 2015-02-19 03:00:51 +0000 +@@ -121,6 +121,11 @@ + # + use vars qw/ %opt /; + ++my $user; ++my $group; ++my @groups; ++my $ans; ++ + # Disable output buffering + $|=1; + +@@ -132,7 +137,11 @@ + # Check if a user belongs to a group + # + sub check { +- local($user, $group) = @_; ++ my $groupSID; ++ my $groupGID; ++ my @tmpuser; ++ ++ our($user, $group) = @_; + if ($opt{K} && ($user =~ m/\@/)) { + @tmpuser = split(/\@/, $user); + $user = "$tmpuser[1]\\$tmpuser[0]"; + |