os: unexport ClientAuthorized()

Not used by any modules, so no need to keep it exported.

Signed-off-by: Enrico Weigelt, metux IT consult <info@metux.net>
Part-of: <https://gitlab.freedesktop.org/xorg/xserver/-/merge_requests/1790>
This commit is contained in:
Enrico Weigelt, metux IT consult 2025-02-13 17:06:29 +01:00 committed by Marge Bot
parent c6b8207342
commit a84ae08526
2 changed files with 5 additions and 6 deletions

View File

@ -115,12 +115,6 @@ extern _X_EXPORT void ResetWellKnownSockets(void);
extern _X_EXPORT void CloseWellKnownConnections(void);
extern _X_EXPORT const char *ClientAuthorized(ClientPtr /*client */ ,
unsigned int /*proto_n */ ,
char * /*auth_proto */ ,
unsigned int /*string_n */ ,
char * /*auth_string */ );
typedef void (*NotifyFdProcPtr)(int fd, int ready, void *data);
#define X_NOTIFY_NONE 0x0

View File

@ -35,5 +35,10 @@ const char *GetClientCmdArgs(struct _Client *client);
Bool ClientIsLocal(struct _Client *client);
XID AuthorizationIDOfClient(struct _Client *client);
const char *ClientAuthorized(struct _Client *client,
unsigned int proto_n,
char *auth_proto,
unsigned int string_n,
char *auth_string);
#endif /* _XSERVER_DIX_CLIENT_PRIV_H */