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:
parent
c6b8207342
commit
a84ae08526
|
@ -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
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue