Fix quoting bug in get_real_path()
authorfuzzyray <fuzzyray@gentoo.org>
Sat, 7 Oct 2006 08:12:07 +0000 (08:12 -0000)
committerfuzzyray <fuzzyray@gentoo.org>
Sat, 7 Oct 2006 08:12:07 +0000 (08:12 -0000)
svn path=/; revision=320

trunk/ChangeLog
trunk/src/euse/euse

index d87a8ec51456a61a13fe39f3b4902763fa71edb0..1a19f1034b0401cf8b6853cb623ffe547c3af330 100644 (file)
@@ -1,3 +1,6 @@
+2006-10-07 Paul Varner <fuzzyray@gentoo.org>
+       * euse: Fix quoting bug in get_real_path() (Bug #150335).
+
 2006-09-21 Paul Varner <fuzzyray@gentoo.org>
        * eread: Add eread script for reading and managing portage ELOG files.
        Thanks to Donnie Berkholz for writing this.
index df8d1575de1a2df25b8560e2a03864ca61d64258..4bb3e6fe7ce52b9bd6ccca1fcd380a2533d2f9c3 100755 (executable)
@@ -59,7 +59,7 @@ get_real_path() {
        set -P
        cd "$1"
        pwd
-       cd $OLDPWD
+       cd "$OLDPWD"
        set +P
 }