From 3172db4567695fdbf3f4a3dd4736b5c1329008f6 Mon Sep 17 00:00:00 2001 From: Zac Medico Date: Thu, 30 Apr 2009 07:29:53 +0000 Subject: [PATCH] Fix the code from bug #267104 to account non-root users. (trunk r13408) svn path=/main/branches/2.1.6/; revision=13548 --- 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 632ed71cb..5d049990b 100644 --- a/pym/portage/__init__.py +++ b/pym/portage/__init__.py @@ -3937,7 +3937,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): -- 2.26.2