os: unexport AuthorizationIDOfClient()
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
1f27d3d653
commit
c6b8207342
|
@ -35,6 +35,7 @@ in this Software without prior written authorization from The Open Group.
|
|||
#include "include/extinit_priv.h"
|
||||
#include "os/audit.h"
|
||||
#include "os/auth.h"
|
||||
#include "os/client_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "scrnintstr.h"
|
||||
|
|
|
@ -115,8 +115,6 @@ extern _X_EXPORT void ResetWellKnownSockets(void);
|
|||
|
||||
extern _X_EXPORT void CloseWellKnownConnections(void);
|
||||
|
||||
extern _X_EXPORT XID AuthorizationIDOfClient(ClientPtr /*client */ );
|
||||
|
||||
extern _X_EXPORT const char *ClientAuthorized(ClientPtr /*client */ ,
|
||||
unsigned int /*proto_n */ ,
|
||||
char * /*auth_proto */ ,
|
||||
|
|
|
@ -34,5 +34,6 @@ const char *GetClientCmdName(struct _Client *client);
|
|||
const char *GetClientCmdArgs(struct _Client *client);
|
||||
|
||||
Bool ClientIsLocal(struct _Client *client);
|
||||
XID AuthorizationIDOfClient(struct _Client *client);
|
||||
|
||||
#endif /* _XSERVER_DIX_CLIENT_PRIV_H */
|
||||
|
|
|
@ -97,6 +97,7 @@ SOFTWARE.
|
|||
#include "dix/dix_priv.h"
|
||||
#include "os/audit.h"
|
||||
#include "os/auth.h"
|
||||
#include "os/client_priv.h"
|
||||
#include "os/osdep.h"
|
||||
|
||||
#include "misc.h" /* for typedef of pointer */
|
||||
|
|
Loading…
Reference in New Issue