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

@@ -66,7 +66,7 @@ static unsigned int getNumberOfTagItems(int type)
};
unsigned int ret;
traverseAllIn(NULL, visit_tag_items, NULL, &data);
db_walk(NULL, visit_tag_items, NULL, &data);
ret = strset_size(data.set);
strset_free(data.set);
@@ -89,6 +89,6 @@ int printStats(struct client *client)
time(NULL) - stats.daemonStart,
(long)(getPlayerTotalPlayTime() + 0.5),
stats.dbPlayTime,
getDbModTime());
db_get_mtime());
return 0;
}