diff options
Diffstat (limited to 'src/libpiano/xml.c')
-rw-r--r-- | src/libpiano/xml.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libpiano/xml.c b/src/libpiano/xml.c index de05122..ce1074a 100644 --- a/src/libpiano/xml.c +++ b/src/libpiano/xml.c @@ -94,6 +94,8 @@ static void PianoXmlIsFaultCb (const char *key, const ezxml_t value, *ret = PIANO_RET_QUICKMIX_NOT_PLAYABLE; } else if (strcmp ("REMOVING_TOO_MANY_SEEDS", matchStart) == 0) { *ret = PIANO_RET_REMOVING_TOO_MANY_SEEDS; + } else if (strcmp ("EXCESSIVE_ACTIVITY", matchStart) == 0) { + *ret = PIANO_RET_EXCESSIVE_ACTIVITY; } else { *ret = PIANO_RET_ERR; printf (PACKAGE ": Unknown error %s in %s\n", |