]> git.tuebingen.mpg.de Git - paraslash.git/blobdiff - stat.c
Change dbinfo1 stat item and use it from afs.
[paraslash.git] / stat.c
diff --git a/stat.c b/stat.c
index ce6adeda2019454acfdf4ca5759e4a29cc4c2e64..adff3b706ddbed2d1bf4dac6c46e41df5459e8a0 100644 (file)
--- a/stat.c
+++ b/stat.c
@@ -65,7 +65,7 @@ const char *status_item_list[NUM_STAT_ITEMS] = {
        [SI_AUDIO_INFO2] = "audio_file_info2",
 
        [SI_AUDIO_INFO3] = "audio_file_info3",
-       [SI_DBINFO1] = "dbinfo1",
+       [SI_AFS_MODE] = "afs_mode",
        [SI_DBINFO2] = "dbinfo2",
 
        [SI_DBINFO3] = "dbinfo3",
@@ -171,7 +171,6 @@ void stat_client_write(const char *msg, int itemnum)
        PARA_DEBUG_LOG("%d client(s)\n", num_clients);
 }
 
-
 /**
  * check if string is a known status item.
  *
@@ -184,12 +183,13 @@ int stat_item_valid(const char *item)
 {
        int i;
        if (!item || !*item) {
-       PARA_ERROR_LOG("%s\n", "no item");
+               PARA_ERROR_LOG("%s\n", "no item");
                return -E_UNKNOWN_STAT_ITEM;
        }
        FOR_EACH_STAT_ITEM(i)
                if (!strcmp(status_item_list[i], item))
                        return i;
+       PARA_ERROR_LOG("invalid stat item: %s\n", item);
        return -E_UNKNOWN_STAT_ITEM;
 }