diff options
Diffstat (limited to 'os/mitauth.c')
-rw-r--r-- | os/mitauth.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/os/mitauth.c b/os/mitauth.c index a7968cbd7..1a26dcea4 100644 --- a/os/mitauth.c +++ b/os/mitauth.c @@ -50,7 +50,7 @@ static struct auth { int MitAddCookie ( unsigned short data_length, - char *data, + const char *data, XID id) { struct auth *new; @@ -74,7 +74,7 @@ MitAddCookie ( XID MitCheckCookie ( unsigned short data_length, - char *data, + const char *data, ClientPtr client, char **reason) { @@ -139,7 +139,7 @@ MitFromID ( int MitRemoveCookie ( unsigned short data_length, - char *data) + const char *data) { struct auth *auth, *prev; @@ -167,7 +167,7 @@ static char cookie[16]; /* 128 bits */ XID MitGenerateCookie ( unsigned data_length, - char *data, + const char *data, XID id, unsigned *data_length_return, char **data_return) |