util: require debug options to be separated by commas
authorMarek Olšák <maraeo@gmail.com>
Mon, 24 Jan 2011 22:41:51 +0000 (23:41 +0100)
committerMarek Olšák <maraeo@gmail.com>
Wed, 26 Jan 2011 09:48:21 +0000 (10:48 +0100)
commitc7c733545a19aab3e2b954153b9348ebe3147368
treeb0fa789271d3e16b356e6d831680911936008749
parent0657fc00dd9e69f71d679d480b5d5f4c33cfae35
util: require debug options to be separated by commas

Let's assume there are two options with names such that one is a substring
of another. Previously, if we only specified the longer one as a debug option,
the shorter one would be considered specified as well (because of strstr).
This commit fixes it by checking that each option is surrounded by commas.

(a regexp would be nicer, but this is not a performance critical code)
src/gallium/auxiliary/util/u_debug.c