Index: programs/Xserver/Xext/appgroup.c =================================================================== RCS file: /cvs/xorg/xc/programs/Xserver/Xext/appgroup.c,v retrieving revision 1.2 diff -u -d -r1.2 appgroup.c --- programs/Xserver/Xext/appgroup.c 23 Apr 2004 18:44:41 -0000 1.2 +++ programs/Xserver/Xext/appgroup.c 24 Feb 2005 01:26:55 -0000 @@ -161,13 +161,18 @@ * guarantee the order of the callbacks and the security * extension may have torn down the client's private data */ +#ifdef XCSECURITY authId = pClient->authId; - break; +#else + authId = None; +#endif + break; } if (authId == None) return; +#ifdef XCSECURITY pAuth = (SecurityAuthorizationPtr)SecurityLookupIDByType(pClient, authId, SecurityAuthorizationResType, SecurityReadAccess); @@ -176,6 +181,7 @@ for (pAppGrp = appGrpList; pAppGrp != NULL; pAppGrp = pAppGrp->next) if (pAppGrp->appgroupId == pAuth->group) break; +#endif } else { pAppGrp = pClient->appgroup; }