From: Andre Date: Fri, 10 Mar 2006 21:54:36 +0000 (+0100) Subject: mysql_selector.c: rename get_dbinfo() to get_selector_info() X-Git-Tag: v0.2.11~4 X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=commitdiff_plain;h=e04fd7a21f2013ce0edd3140195cb3f11ce91faf;ds=inline mysql_selector.c: rename get_dbinfo() to get_selector_info() --- diff --git a/mysql_selector.c b/mysql_selector.c index 2ed81f98..b51f4f07 100644 --- a/mysql_selector.c +++ b/mysql_selector.c @@ -1248,7 +1248,7 @@ out: * This is called from server and from some commands. Name must not be NULL * Never returns NULL. */ -static char *get_dbinfo(char *name) +static char *get_selector_info(char *name) { char *meta = NULL, *atts = NULL, *info, *dir = NULL, *query, *stream = NULL; void *result = NULL; @@ -1814,7 +1814,7 @@ static void update_mmd(char *info) static void update_audio_file_server_handler(char *name) { char *info; - info = get_dbinfo(name); + info = get_selector_info(name); update_mmd(info); free(info); update_audio_file(name); @@ -1834,7 +1834,7 @@ static void refresh_selector_info(void) if (!name) return; - info = get_dbinfo(name); + info = get_selector_info(name); free(name); mmd_lock(); update_mmd(info);