From 59dbbe2cf281736caa5ec3db3c47b30b5afd9d70 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Wed, 29 Apr 2009 05:03:45 +0000 Subject: Fix the code from bug #267104 to account non-root users. svn path=/main/trunk/; revision=13408 --- pym/portage/__init__.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pym/portage/__init__.py b/pym/portage/__init__.py index 5a0f86da2..d852efe78 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3947,7 +3947,9 @@ def fetch(myuris, mysettings, listonly=0, fetchonly=0, locks_in_subdir=".locks", mysize = 0 if (size - mysize + vfs_stat.f_bsize) >= \ (vfs_stat.f_bsize * vfs_stat.f_bavail): - if 'userfetch' in features: + if secpass < 2: + has_space = False + elif userfetch: has_space = False elif (size - mysize + vfs_stat.f_bfree) >= \ (vfs_stat.f_bfree * vfs_stat.f_bavail): -- cgit v1.2.3-1-g7c22