From 354ac4e9edd7db050e2b71a34a01c5b8b3100607 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 18 Aug 2009 09:53:30 +0200 Subject: piano: New error code OUT_OF_SYNC Error code indicates that the system's time is "out of sync". Maybe the "sync" response timestamp should be checked *before* errors like this happen... Thanks to Jason for pointing this out. --- libpiano/src/xml.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libpiano/src/xml.c') diff --git a/libpiano/src/xml.c b/libpiano/src/xml.c index b02df5d..5045440 100644 --- a/libpiano/src/xml.c +++ b/libpiano/src/xml.c @@ -79,6 +79,8 @@ static void PianoXmlIsFaultCb (const char *key, const ezxml_t value, } else if (strcmp ("STATION_DOES_NOT_EXIST", matchStart) == 0) { *ret = PIANO_RET_STATION_NONEXISTENT; + } else if (strcmp ("OUT_OF_SYNC", matchStart) == 0) { + *ret = PIANO_RET_OUT_OF_SYNC; } else { *ret = PIANO_RET_ERR; printf (PACKAGE ": Unknown error %s in %s\n", -- cgit v1.2.3