X-Git-Url: http://git.tuebingen.mpg.de/?p=paraslash.git;a=blobdiff_plain;f=random_selector.c;h=bdb82682baeee1cec89e32e2c394b724d8eba68b;hp=43cddb4aa7e92197121d60fe2a71b6eec341a865;hb=9ebd69fa0ad93040ca37190e1b71683d027095e9;hpb=bb406379164df28e66c0c320780095721ddc938a diff --git a/random_selector.c b/random_selector.c index 43cddb4a..bdb82682 100644 --- a/random_selector.c +++ b/random_selector.c @@ -54,7 +54,7 @@ static struct server_command cmds[] = { .name = "random_info", .handler = com_random_info, .perms = 0, -.description = "about the random database tool", +.description = "about the random audio file selector", .synopsis = "random_info", .help = @@ -124,23 +124,21 @@ static void random_shutdown(void) { } -/** random's (constant) database info text */ -#define DBINFO "dbinfo1:database info? You're kidding. I'm still dopey!\ndbinfo2:\ndbinfo3:\n" - /** - * the init function for the random database tool + * the init function for the random audio file selector * - * Init all function pointers of \a db, init the dbinfo text and seed the + * Init all function pointers of \a db, init the info text and seed the * PRNG. * - * \sa struct audio_file_selector, misc_meta_data::dbinfo, mysql.c + * \sa struct audio_file_selector, misc_meta_data::selector_info, mysql.c */ int random_selector_init(struct audio_file_selector *db) { struct timeval now; PARA_INFO_LOG("%s", "registering random handlers ;)\n"); - sprintf(mmd->dbinfo, DBINFO); + sprintf(mmd->selector_info, "dbinfo1:database info? You're kidding. " + "I'm still dopey!\ndbinfo2:\ndbinfo3:\n"); gettimeofday(&now, NULL); srand(now.tv_usec); db->cmd_list = cmds;