From 675e6af3ba3a69539d3faa11f9121295a8e4ee15 Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Wed, 30 Nov 2011 14:14:36 +0100 Subject: [PATCH] Don't print warnings about known extensions that don't affect the hub at all (DHT0). --- src/core/user.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/core/user.c b/src/core/user.c index 40274b2..0f1acb8 100644 --- a/src/core/user.c +++ b/src/core/user.c @@ -181,6 +181,10 @@ static int convert_support_fourcc(int fourcc) case FOURCC('A','D','C','S'): return feature_adcs; + // ignore these extensions, they are not useful for the hub. + case FOURCC('D','H','T','0'): + return 0; + default: LOG_DEBUG("Unknown extension: %x", fourcc); return 0;