diff options
author | Tomas Chvatal <scarabeus@gentoo.org> | 2011-05-22 09:26:15 +0000 |
---|---|---|
committer | Tomas Chvatal <scarabeus@gentoo.org> | 2011-05-22 09:26:15 +0000 |
commit | fe1689e9d899ac7a5bae0b63b989e0bcbbac3617 (patch) | |
tree | ce49be41056ed0f3ea6ae4e8261396a986bf4f9a /sci-misc/boinc | |
parent | Version bump to boinc 6.12.26. Drop older. Update tarballs to be lzma compres... (diff) | |
download | gentoo-2-fe1689e9d899ac7a5bae0b63b989e0bcbbac3617.tar.gz gentoo-2-fe1689e9d899ac7a5bae0b63b989e0bcbbac3617.tar.bz2 gentoo-2-fe1689e9d899ac7a5bae0b63b989e0bcbbac3617.zip |
Fix blank pw issue. Per bug #367615.
(Portage version: 2.2.0_alpha34/cvs/Linux x86_64)
Diffstat (limited to 'sci-misc/boinc')
-rw-r--r-- | sci-misc/boinc/ChangeLog | 5 | ||||
-rw-r--r-- | sci-misc/boinc/files/boinc.init | 2 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sci-misc/boinc/ChangeLog b/sci-misc/boinc/ChangeLog index 00374e5fa6a5..c86f3363b50d 100644 --- a/sci-misc/boinc/ChangeLog +++ b/sci-misc/boinc/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sci-misc/boinc # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.96 2011/05/22 09:22:59 scarabeus Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-misc/boinc/ChangeLog,v 1.97 2011/05/22 09:26:15 scarabeus Exp $ + + 22 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> files/boinc.init: + Fix blank pw issue. Per bug #367615. *boinc-6.12.26 (22 May 2011) diff --git a/sci-misc/boinc/files/boinc.init b/sci-misc/boinc/files/boinc.init index ee772209e130..37b4fa938f7c 100644 --- a/sci-misc/boinc/files/boinc.init +++ b/sci-misc/boinc/files/boinc.init @@ -99,7 +99,7 @@ attach() { fi ebegin "Attaching to project" - boinccmd --host localhost --passwd ${password} ${args} + boinccmd --host localhost --passwd "${password}" ${args} eend $? unset password args url key |