diff options
author | Josh Triplett <josh@freedesktop.org> | 2006-05-14 22:37:55 -0700 |
---|---|---|
committer | Josh Triplett <josh@freedesktop.org> | 2006-05-14 22:37:55 -0700 |
commit | 442730a9a25644e6d09065cdde2f1595ea65caf3 (patch) | |
tree | e4de5f647670b13d20ddb452445c94cfc6bdf7bb /src/xcb_out.c | |
parent | 2e49f58e4cd670e6bd6a0006833277cfb1da60e6 (diff) |
In the GLX workaround, use !strcmp to check for equality with "GLX", not strcmp.
Diffstat (limited to 'src/xcb_out.c')
-rw-r--r-- | src/xcb_out.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xcb_out.c b/src/xcb_out.c index 2667973..e371cd1 100644 --- a/src/xcb_out.c +++ b/src/xcb_out.c @@ -144,7 +144,7 @@ unsigned int XCBSendRequest(XCBConnection *c, int flags, struct iovec *vector, c flags &= ~XCB_REQUEST_RAW; /* do we need to work around the X server bug described in glx.xml? */ - if(req->ext && !req->isvoid && strcmp(req->ext->name, "GLX") && + if(req->ext && !req->isvoid && !strcmp(req->ext->name, "GLX") && ((req->opcode == 17 && ((CARD32 *) vector[0].iov_base)[0] == 0x10004) || req->opcode == 21)) workaround = WORKAROUND_GLX_GET_FB_CONFIGS_BUG; |