(!1639) dbe: drop now obsolete swap procs

Several SProc's have become no-ops, just calling the actual Proc's,
so we can get rid of them entirely.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
This commit is contained in:
Enrico Weigelt, metux IT consult 2024-08-07 12:11:16 +02:00
parent 047b7584f9
commit 683f76224a

View File

@ -799,29 +799,7 @@ ProcDbeDispatch(ClientPtr client)
}
} /* ProcDbeDispatch() */
/******************************************************************************
*
* DBE DIX Procedure: SProcDbeGetVersion
*
* Description:
*
* This function is for processing a DbeGetVersion request on a swapped
* server. This request returns the major and minor version numbers of
* this extension.
*
* Return Values:
*
* Success
*
*****************************************************************************/
static int _X_COLD
SProcDbeGetVersion(ClientPtr client)
{
return (ProcDbeGetVersion(client));
} /* SProcDbeGetVersion() */
/******************************************************************************
*
* DBE DIX Procedure: SProcDbeAllocateBackBufferName
@ -1014,7 +992,7 @@ SProcDbeDispatch(ClientPtr client)
switch (stuff->data) {
case X_DbeGetVersion:
return (SProcDbeGetVersion(client));
return ProcDbeGetVersion(client);
case X_DbeAllocateBackBufferName:
return (SProcDbeAllocateBackBufferName(client));