From 02a2a407c1d52c6635a551b7a64f1959781aba6d Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Fri, 17 Oct 2008 23:53:28 +0200 Subject: client: converted permissions to unsigned client->permission is a bit set, and should be unsigned. --- src/client.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/client.c') diff --git a/src/client.c b/src/client.c index b0cd8c8d7..f3f5f44ad 100644 --- a/src/client.c +++ b/src/client.c @@ -72,7 +72,7 @@ struct client { size_t bufferPos; int fd; /* file descriptor; -1 if expired */ - int permission; + unsigned permission; /** the uid of the client process, or -1 if unknown */ int uid; @@ -115,12 +115,12 @@ int client_get_uid(const struct client *client) return client->uid; } -int client_get_permission(const struct client *client) +unsigned client_get_permission(const struct client *client) { return client->permission; } -void client_set_permission(struct client *client, int permission) +void client_set_permission(struct client *client, unsigned permission) { client->permission = permission; } -- cgit v1.2.3