From 785819ed369fae59aef20a09779eaa0a627a8709 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Sat, 13 Dec 2008 21:24:55 +0100 Subject: piano: New error STATION_CODE_INVALID --- libpiano/src/xml.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'libpiano/src/xml.c') 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", -- cgit v1.2.3