mirror of
https://github.com/X11Libre/xserver.git
synced 2026-03-24 05:54:08 +00:00
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:
6
os/io.c
6
os/io.c
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user