[PC-BSD Commits] r6505 - pcbsd/trunk/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Mon Apr 5 09:03:11 PDT 2010
Author: kris
Date: 2010-04-05 09:03:11 -0700 (Mon, 05 Apr 2010)
New Revision: 6505
Modified:
pcbsd/trunk/SysInstaller/dialogSelectNet.cpp
Log:
Don't add life-preserver/ to selected directory automatically anymore
Modified: pcbsd/trunk/SysInstaller/dialogSelectNet.cpp
===================================================================
--- pcbsd/trunk/SysInstaller/dialogSelectNet.cpp 2010-04-05 16:01:18 UTC (rev 6504)
+++ pcbsd/trunk/SysInstaller/dialogSelectNet.cpp 2010-04-05 16:03:11 UTC (rev 6505)
@@ -170,23 +170,17 @@
if ( radioInternet->isChecked() )
{
tmp = comboMirror->currentText();
- if ( usingRsync) {
- tmp = "life-preserver/" + tmp;
- } else {
+ if ( ! usingRsync)
tmp.remove(0, tmp.indexOf("=") + 1);
- }
emit saved(tmp);
+
} else {
if ( comboProto->currentText() == "FTP" )
- {
prefix="ftp://";
- }
if ( comboProto->currentText() == "HTTP" )
- {
prefix="http://";
- }
server = lineServer->text();
directory = lineDirectory->text();
More information about the Commits
mailing list