Changeset 2695
- Timestamp:
- 06/06/2010 15:30:36 (2 years ago)
- Location:
- box/trunk
- Files:
-
- 4 edited
-
bin/bbackupquery/bbackupquery.cpp (modified) (1 diff)
-
bin/bbstoreaccounts/bbstoreaccounts.cpp (modified) (1 diff)
-
bin/bbstored/bbstored.cpp (modified) (1 diff)
-
lib/backupstore/BackupStoreConfigVerify.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
box/trunk/bin/bbackupquery/bbackupquery.cpp
r2643 r2695 175 175 176 176 // Filename for configuration file? 177 std::string configFilename; 178 179 #ifdef WIN32 180 configFilename = BOX_GET_DEFAULT_BBACKUPD_CONFIG_FILE; 181 #else 182 configFilename = BOX_FILE_BBACKUPD_DEFAULT_CONFIG; 183 #endif 177 std::string configFilename = BOX_GET_DEFAULT_BBACKUPD_CONFIG_FILE; 184 178 185 179 // Flags -
box/trunk/bin/bbstoreaccounts/bbstoreaccounts.cpp
r2560 r2695 466 466 467 467 // Filename for configuration file? 468 std::string configFilename; 469 470 #ifdef WIN32 471 configFilename = BOX_GET_DEFAULT_BBACKUPD_CONFIG_FILE; 472 #else 473 configFilename = BOX_FILE_BBSTORED_DEFAULT_CONFIG; 474 #endif 468 std::string configFilename = BOX_GET_DEFAULT_BBACKUPD_CONFIG_FILE; 475 469 476 470 // See if there's another entry on the command line -
box/trunk/bin/bbstored/bbstored.cpp
r2180 r2695 25 25 BackupStoreDaemon daemon; 26 26 27 #ifdef WIN32 28 return daemon.Main(BOX_GET_DEFAULT_BBACKUPD_CONFIG_FILE, 29 argc, argv); 30 #else 31 return daemon.Main(BOX_FILE_BBSTORED_DEFAULT_CONFIG, 32 argc, argv); 33 #endif 27 return daemon.Main(BOX_GET_DEFAULT_BBACKUPD_CONFIG_FILE, argc, argv); 34 28 35 29 MAINHELPER_END -
box/trunk/lib/backupstore/BackupStoreConfigVerify.cpp
r2127 r2695 39 39 ConfigurationVerifyKey("ExtendedLogging", ConfigTest_IsBool, false), 40 40 // make value "yes" to enable in config file 41 42 #ifdef WIN32 43 ConfigurationVerifyKey("RaidFileConf", ConfigTest_LastEntry) 44 #else 45 ConfigurationVerifyKey("RaidFileConf", ConfigTest_LastEntry, 46 BOX_FILE_RAIDFILE_DEFAULT_CONFIG) 47 #endif 41 ConfigurationVerifyKey("RaidFileConf", ConfigTest_LastEntry) 48 42 }; 49 43
Note: See TracChangeset
for help on using the changeset viewer.
