From 4c4cb4fb36db88e432c47a73617e9e77b81c5385 Mon Sep 17 00:00:00 2001 From: Jan Vidar Krey Date: Mon, 13 Apr 2009 05:31:41 +0200 Subject: [PATCH] Dont allow clients that do not support BASE Signed-off-by: Jan Vidar Krey --- src/user.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/user.c b/src/user.c index 77f0a58..3197c04 100644 --- a/src/user.c +++ b/src/user.c @@ -121,6 +121,9 @@ static int convert_support_fourcc(int fourcc) switch (fourcc) { case FOURCC('B','A','S','0'): /* Obsolete */ +#ifndef OLD_ADC_SUPPORT + return 0; +#endif case FOURCC('B','A','S','E'): return feature_base;