diff options
Diffstat (limited to 'libpiano/src/xml.c')
-rw-r--r-- | libpiano/src/xml.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpiano/src/xml.c b/libpiano/src/xml.c index 2b33fe3..a07542b 100644 --- a/libpiano/src/xml.c +++ b/libpiano/src/xml.c @@ -70,6 +70,9 @@ void PianoXmlIsFaultCb (const char *key, const xmlNode *value, void *data) { *ret = PIANO_RET_PROTOCOL_INCOMPATIBLE; } else if (strcmp ("READONLY_MODE", matchStr) == 0) { *ret = PIANO_RET_READONLY_MODE; + } else if (strcmp ("STATION_CODE_INVALID", + matchStr) == 0) { + *ret = PIANO_RET_STATION_CODE_INVALID; } else { *ret = PIANO_RET_ERR; printf (PACKAGE ": Unknown error %s in %s\n", |