Only output SetClientVersion message if verbosity > 1, like other
extensions do
This commit is contained in:
parent
d921173833
commit
448997ebcd
|
@ -1,4 +1,7 @@
|
||||||
2006-03-04 Matthieu Herrb <matthieu.herrb@laas.fr>
|
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:
|
* configure.ac:
|
||||||
define SYS_LIBS to hold system dependant libraries that may needed.
|
define SYS_LIBS to hold system dependant libraries that may needed.
|
||||||
* GL/glx/indirect_dispatch_swap.c:
|
* GL/glx/indirect_dispatch_swap.c:
|
||||||
|
|
|
@ -504,6 +504,7 @@ ProcXF86MiscSetClientVersion(ClientPtr client)
|
||||||
return BadAlloc;
|
return BadAlloc;
|
||||||
MPRIV(client) = pPriv;
|
MPRIV(client) = pPriv;
|
||||||
}
|
}
|
||||||
|
if (xf86GetVerbosity() > 1)
|
||||||
ErrorF("SetClientVersion: %i %i\n",stuff->major,stuff->minor);
|
ErrorF("SetClientVersion: %i %i\n",stuff->major,stuff->minor);
|
||||||
pPriv->major = stuff->major;
|
pPriv->major = stuff->major;
|
||||||
pPriv->minor = stuff->minor;
|
pPriv->minor = stuff->minor;
|
||||||
|
|
Loading…
Reference in New Issue