[PC-BSD Commits] r12245 - pcbsd/current/src-qt4/pc-sysinstaller
svn at pcbsd.org
svn at pcbsd.org
Tue Aug 23 09:22:57 PDT 2011
Author: kris
Date: 2011-08-23 09:22:57 -0700 (Tue, 23 Aug 2011)
New Revision: 12245
Modified:
pcbsd/current/src-qt4/pc-sysinstaller/dialogSelectNet.cpp
Log:
Fixed netinstall auto-url location to include /netinstall
Modified: pcbsd/current/src-qt4/pc-sysinstaller/dialogSelectNet.cpp
===================================================================
--- pcbsd/current/src-qt4/pc-sysinstaller/dialogSelectNet.cpp 2011-08-23 14:32:27 UTC (rev 12244)
+++ pcbsd/current/src-qt4/pc-sysinstaller/dialogSelectNet.cpp 2011-08-23 16:22:57 UTC (rev 12245)
@@ -175,8 +175,8 @@
if ( radioInternet->isChecked() )
{
tmp = comboMirror->currentText();
- if ( ! usingRsync)
- tmp.remove(0, tmp.indexOf("=") + 1);
+ tmp.remove(0, tmp.indexOf("=") + 1);
+ tmp = tmp + "/netinstall";
emit saved(tmp);
} else {
More information about the Commits
mailing list