database: renamed functions, "db_" prefix and no CamelCase
Yet another CamelCase removal patch.
This commit is contained in:
12
src/main.c
12
src/main.c
@@ -272,17 +272,17 @@ static void changeToUser(void)
|
||||
|
||||
static void openDB(Options * options, char *argv0)
|
||||
{
|
||||
if (options->createDB > 0 || readDirectoryDB() < 0) {
|
||||
if (options->createDB > 0 || db_load() < 0) {
|
||||
if (options->createDB < 0) {
|
||||
FATAL("can't open db file and using "
|
||||
"\"--no-create-db\" command line option\n"
|
||||
"try running \"%s --create-db\"\n", argv0);
|
||||
}
|
||||
flushWarningLog();
|
||||
if (checkDirectoryDB() < 0)
|
||||
if (db_check() < 0)
|
||||
exit(EXIT_FAILURE);
|
||||
directory_init();
|
||||
if (writeDirectoryDB() < 0)
|
||||
db_init();
|
||||
if (db_save() < 0)
|
||||
exit(EXIT_FAILURE);
|
||||
if (options->createDB)
|
||||
exit(EXIT_SUCCESS);
|
||||
@@ -456,8 +456,8 @@ int main(int argc, char *argv[])
|
||||
finishPlaylist();
|
||||
|
||||
start = clock();
|
||||
directory_finish();
|
||||
DEBUG("directory_finish took %f seconds\n",
|
||||
db_finish();
|
||||
DEBUG("db_finish took %f seconds\n",
|
||||
((float)(clock()-start))/CLOCKS_PER_SEC);
|
||||
|
||||
deinit_main_notify();
|
||||
|
||||
Reference in New Issue
Block a user