From b9471870357d71734a3f4fe6d0533ae164fe666d Mon Sep 17 00:00:00 2001 From: Justin Maggard Date: Fri, 1 May 2009 21:53:22 +0000 Subject: [PATCH] * Only count DLNA 1.5 clients as DLNA-compliant. --- upnphttp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upnphttp.c b/upnphttp.c index deaa4cf..7835290 100644 --- a/upnphttp.c +++ b/upnphttp.c @@ -222,7 +222,7 @@ intervening space) by either an integer or the keyword "infinite". */ h->req_client = ESamsungTV; h->reqflags |= FLAG_DLNA; } - else if(strcasestr(p, "DLNADOC/")) + else if(strcasestr(p, "DLNADOC/1.50")) { h->req_client = EUnknownClient; h->reqflags |= FLAG_DLNA;