dix: rename MarkClientException() to dixMarkClientException()

DIX functions should have proper naming.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult
2025-06-02 17:14:07 +02:00
parent 6a3b60cfe7
commit 0b9a2fc6b0
4 changed files with 6 additions and 6 deletions

View File

@@ -742,7 +742,7 @@ WriteToClient(ClientPtr who, int count, const void *__buf)
}
else if (!(oco = AllocateOutputBuffer())) {
AbortClient(who);
MarkClientException(who);
dixMarkClientException(who);
return -1;
}
oc->output = oco;
@@ -920,7 +920,7 @@ FlushClient(ClientPtr who, OsCommPtr oc, const void *__extraBuf, int extraCount)
}
if (!obuf) {
AbortClient(who);
MarkClientException(who);
dixMarkClientException(who);
oco->count = 0;
return -1;
}
@@ -947,7 +947,7 @@ FlushClient(ClientPtr who, OsCommPtr oc, const void *__extraBuf, int extraCount)
#endif
else {
AbortClient(who);
MarkClientException(who);
dixMarkClientException(who);
oco->count = 0;
return -1;
}