From 6f02b03ebc28de6c8d19599d7aa0a9066f9d83ee Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 27 Jan 2009 18:02:27 +0100 Subject: piano: New error STATION_NONEXISTENT --- 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 847bc49..6d3d35a 100644 --- a/libpiano/src/xml.c +++ b/libpiano/src/xml.c @@ -78,6 +78,9 @@ void PianoXmlIsFaultCb (const char *key, const xmlNode *value, void *data) { } else if (strcmp ("STATION_CODE_INVALID", matchStr) == 0) { *ret = PIANO_RET_STATION_CODE_INVALID; + } else if (strcmp ("STATION_DOES_NOT_EXIST", + matchStr) == 0) { + *ret = PIANO_RET_STATION_NONEXISTENT; } else { *ret = PIANO_RET_ERR; printf (PACKAGE ": Unknown error %s in %s\n", -- cgit v1.2.3