database: renamed functions, "db_" prefix and no CamelCase

Yet another CamelCase removal patch.
This commit is contained in:
Max Kellermann
2008-10-08 11:07:55 +02:00
parent 7a023eb0b2
commit bb8a9533b1
11 changed files with 79 additions and 68 deletions

View File

@@ -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();