Fix #1086: add /testnet to passed datadir
authorPieter Wuille <pieter.wuille@gmail.com>
Fri, 13 Apr 2012 01:11:14 +0000 (03:11 +0200)
committerPieter Wuille <pieter.wuille@gmail.com>
Fri, 13 Apr 2012 01:11:14 +0000 (03:11 +0200)
src/util.cpp

index 91f1810..c446474 100644 (file)
@@ -836,9 +836,9 @@ const boost::filesystem::path &GetDataDir(bool fNetSpecific)
         path = mapArgs["-datadir"];
     } else {
         path = GetDefaultDataDir();
-        if (fNetSpecific && GetBoolArg("-testnet", false))
-            path /= "testnet";
     }
+    if (fNetSpecific && GetBoolArg("-testnet", false))
+        path /= "testnet";
 
     fs::create_directory(path);