[PC-BSD Commits] r6546 - pcbsd/trunk/SysInstaller
svn at pcbsd.org
svn at pcbsd.org
Mon Apr 12 11:44:58 PDT 2010
Author: kris
Date: 2010-04-12 11:44:58 -0700 (Mon, 12 Apr 2010)
New Revision: 6546
Modified:
pcbsd/trunk/SysInstaller/backend.cpp
Log:
Fixed backend for SysInstaller when reading in adx'p' formatted partitions
Modified: pcbsd/trunk/SysInstaller/backend.cpp
===================================================================
--- pcbsd/trunk/SysInstaller/backend.cpp 2010-04-12 15:23:14 UTC (rev 6545)
+++ pcbsd/trunk/SysInstaller/backend.cpp 2010-04-12 18:44:58 UTC (rev 6546)
@@ -366,7 +366,7 @@
while (ppp.canReadLine()) {
info = ppp.readLine().simplified();
// Get the slice we are working on
- if ( info.indexOf(dev + "s") == 0 ) {
+ if ( info.indexOf(dev + "s") == 0 || info.indexOf(dev + "p") == 0 ) {
slice = info;
slice.truncate(slice.indexOf("-"));
} else {
More information about the Commits
mailing list