the paraslash-0.2.11 release tarball
[paraslash.git] / random_selector.c
index 37e9116bc24d9ea21e388b7b85576fdeae541525..bdb82682baeee1cec89e32e2c394b724d8eba68b 100644 (file)
@@ -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 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;