[simias-svn] SF.net SVN: simias:[7506] trunk/src/utils/restore/iFolderServer.cs
Brought to you by:
srinidhi_bs
|
From: <sp...@us...> - 2010-09-01 08:32:53
|
Revision: 7506
http://simias.svn.sourceforge.net/simias/?rev=7506&view=rev
Author: spkumar
Date: 2010-09-01 08:32:47 +0000 (Wed, 01 Sep 2010)
Log Message:
-----------
ID: Bug#636117
Reviewer: Ramesh
Localization Required: No
Documentation Required: No
Description: To fix an issue while validating the input paths
Modified Paths:
--------------
trunk/src/utils/restore/iFolderServer.cs
Modified: trunk/src/utils/restore/iFolderServer.cs
===================================================================
--- trunk/src/utils/restore/iFolderServer.cs 2010-09-01 08:29:05 UTC (rev 7505)
+++ trunk/src/utils/restore/iFolderServer.cs 2010-09-01 08:32:47 UTC (rev 7506)
@@ -2215,12 +2215,12 @@
}
else {
//Check for mandatory files in the given simias path
- string simiasPath = Path.Combine(DataPath, "/simias");;
+ string simiasPath = Path.Combine(DataPath, "simias");;
if( !Directory.Exists(simiasPath)) {
Console.WriteLine("| Error: simias directory does not exist at the specified path: {0} .|",DataPath);
return (int)status.InvalidBackupPath;
}
- string flaimdb= Path.Combine(DataPath, "/simias/FlaimSimias.db");
+ string flaimdb= Path.Combine(DataPath, "simias/FlaimSimias.db");
if(!File.Exists (flaimdb) ){
Console.WriteLine("| Error: iFolder simias database ({0}) does not exist at the specified path.|",flaimdb);
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|