From bc96ad79ee62becd6ed6aa751e0f17486065cf4e Mon Sep 17 00:00:00 2001 From: "dbragg%netscape.com" Date: Wed, 19 Jul 2000 21:32:37 +0000 Subject: [PATCH] Fix for nsbeta2+ bug #45653. Removed code that appends a '/' since the call to Append is taking care of that for us. This was resulting in a double slash at the end of the mURL string and the Mac gagged on it. git-svn-id: svn://10.0.0.236/trunk@74477 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/xpinstall/src/nsRegisterItem.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/mozilla/xpinstall/src/nsRegisterItem.cpp b/mozilla/xpinstall/src/nsRegisterItem.cpp index 8edcfc811dc..633c4deb33d 100644 --- a/mozilla/xpinstall/src/nsRegisterItem.cpp +++ b/mozilla/xpinstall/src/nsRegisterItem.cpp @@ -90,8 +90,6 @@ PRInt32 nsRegisterItem::Prepare() if (!isDir) mURL.Append("!/"); - else - mURL.Append("/"); } return nsInstall::SUCCESS;