registry: swap out the DTRACE XErrorDB stuff for the new registry call.

This commit is contained in:
Eamon Walsh 2007-11-26 15:59:44 -05:00 committed by Eamon Walsh
commit 996b621bec
4 changed files with 2 additions and 97 deletions

View file

@ -354,17 +354,3 @@ ProcListExtensions(ClientPtr client)
}
return(client->noClientException);
}
#ifdef XSERVER_DTRACE
void LoadExtensionNames(char **RequestNames) {
int i;
for (i=0; i<NumExtensions; i++) {
int r = extensions[i]->base;
if (RequestNames[r] == NULL) {
RequestNames[r] = strdup(extensions[i]->name);
}
}
}
#endif