Remove reference to non-existing requestLog and requestLogIndex
These fields were removed in 252ec50481
.
Signed-off-by: Nicolai Haehnle <nhaehnle@gmail.com>
Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
This commit is contained in:
parent
12e725d08b
commit
6583477035
|
@ -413,12 +413,6 @@ Dispatch(void)
|
||||||
}
|
}
|
||||||
|
|
||||||
client->sequence++;
|
client->sequence++;
|
||||||
#ifdef DEBUG
|
|
||||||
if (client->requestLogIndex == MAX_REQUEST_LOG)
|
|
||||||
client->requestLogIndex = 0;
|
|
||||||
client->requestLog[client->requestLogIndex] = MAJOROP;
|
|
||||||
client->requestLogIndex++;
|
|
||||||
#endif
|
|
||||||
#ifdef XSERVER_DTRACE
|
#ifdef XSERVER_DTRACE
|
||||||
XSERVER_REQUEST_START(LookupMajorName(MAJOROP), MAJOROP,
|
XSERVER_REQUEST_START(LookupMajorName(MAJOROP), MAJOROP,
|
||||||
((xReq *)client->requestBuffer)->length,
|
((xReq *)client->requestBuffer)->length,
|
||||||
|
|
|
@ -37,10 +37,6 @@ SOFTWARE.
|
||||||
* translation from client ids to server addresses.
|
* translation from client ids to server addresses.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#ifdef DEBUG
|
|
||||||
#define MAX_REQUEST_LOG 100
|
|
||||||
#endif
|
|
||||||
|
|
||||||
extern _X_EXPORT CallbackListPtr ClientStateCallback;
|
extern _X_EXPORT CallbackListPtr ClientStateCallback;
|
||||||
|
|
||||||
typedef struct {
|
typedef struct {
|
||||||
|
|
Loading…
Reference in New Issue