diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | hw/xfree86/dixmods/extmod/xf86misc.c | 3 |
2 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,7 @@ 2006-03-04 Matthieu Herrb <matthieu.herrb@laas.fr> + * hw/xfree86/dixmods/extmod/xf86misc.c + Only output SetClientVersion message if verbosity > 1, like other + extensions do * configure.ac: define SYS_LIBS to hold system dependant libraries that may needed. * GL/glx/indirect_dispatch_swap.c: diff --git a/hw/xfree86/dixmods/extmod/xf86misc.c b/hw/xfree86/dixmods/extmod/xf86misc.c index a35db1f2f..3ce3c4266 100644 --- a/hw/xfree86/dixmods/extmod/xf86misc.c +++ b/hw/xfree86/dixmods/extmod/xf86misc.c @@ -504,7 +504,8 @@ ProcXF86MiscSetClientVersion(ClientPtr client) return BadAlloc; MPRIV(client) = pPriv; } - ErrorF("SetClientVersion: %i %i\n",stuff->major,stuff->minor); + if (xf86GetVerbosity() > 1) + ErrorF("SetClientVersion: %i %i\n",stuff->major,stuff->minor); pPriv->major = stuff->major; pPriv->minor = stuff->minor; |