Update vconf key for sdcard
authorDuyoung Jang <duyoung.jang@samsung.com>
Mon, 19 Aug 2013 08:02:47 +0000 (17:02 +0900)
committerDuyoung Jang <duyoung.jang@samsung.com>
Mon, 19 Aug 2013 08:02:47 +0000 (17:02 +0900)
Change-Id: If02ed58a3ddb47f5008731ad30cac58d8363334d
Signed-off-by: Duyoung Jang <duyoung.jang@samsung.com>
inc/InstallerDefs.h
src/Util/InstallerUtil.cpp

index ebab4a7..45ed0de 100755 (executable)
@@ -23,7 +23,7 @@
 
 #include "InstallerUtil.h"
 
-#define OSP_INSTALLER_VERSION "version=[20130813.2]"
+#define OSP_INSTALLER_VERSION "version=[20130819.1]"
 
 #define DIR_BIN                                L"/bin"
 #define DIR_INFO                       L"/info"
index 4686eae..fe5cb5b 100755 (executable)
@@ -1159,8 +1159,8 @@ InstallerUtil::IsDefaultExternalStorage()
        int storage = 0;
        int mmcStatus = VCONFKEY_SYSMAN_MMC_REMOVED;
 
-       res = vconf_get_int("db/setting/default_memory/download", &storage);
-       TryReturn(res == 0, false, "vconf_get_int(db/setting/default_memory/download) failed.");
+       res = vconf_get_int("db/setting/default_memory/download_application", &storage);
+       TryReturn(res == 0, false, "vconf_get_int(db/setting/default_memory/download_application) failed.");
 
        AppLog("Storage = [%d]", storage);