diff options
Diffstat (limited to 'libpiano/src/xml.c')
-rw-r--r-- | libpiano/src/xml.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libpiano/src/xml.c b/libpiano/src/xml.c index 9db2644..66e937e 100644 --- a/libpiano/src/xml.c +++ b/libpiano/src/xml.c @@ -87,7 +87,8 @@ void PianoXmlIsFaultCb (const char *key, const xmlNode *value, void *data) { } } } else if (strcmp ("faultCode", key) == 0) { - /* some error can only be identified by looking at their id */ + /* some errors can only be identified by looking at their id */ + /* detect pandora's ip restriction */ if (strcmp ("12", valueStr) == 0) { *ret = PIANO_RET_IP_REJECTED; } |