Added an info message for malfunctioning devices with quirks.

This commit is contained in:
Rolf Ahrenberg 2014-12-20 18:46:18 +02:00
parent 4cb25ce93c
commit 3475c179d1
1 changed files with 2 additions and 0 deletions

View File

@ -43,6 +43,8 @@ cSatipServer::cSatipServer(const char *addressP, const char *modelP, const char
// These devices contain a frontend locking bug:
if (strstr(*descriptionM, "fritzdvbc")) // Fritz!WLAN Repeater DVB-C
quirkM |= eSatipQuirkForceLock;
if (quirkM != eSatipQuirkNone)
info("Malfunctioning '%s' server detected! Please, fix the firmware.", *descriptionM);
}
char *s, *p = strdup(*modelM);
char *r = strtok_r(p, ",", &s);