From eb4e10115310b6ed23b92abac2e79454c80930b1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Mon, 31 Dec 2001 13:46:26 +0000 Subject: - portablitity fixes for cc -64 on irix - fixed gid* bug in rpc_server (This used to be commit 48aa90c48c5f0e3054c4acdc49668e222e7c0d36) --- source3/lib/account_pol.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib/account_pol.c') diff --git a/source3/lib/account_pol.c b/source3/lib/account_pol.c index 74c8883ed1..1b70d0ceb0 100644 --- a/source3/lib/account_pol.c +++ b/source3/lib/account_pol.c @@ -105,7 +105,7 @@ static char *decode_account_policy_name(int field) /**************************************************************************** ****************************************************************************/ -BOOL account_policy_get(int field, int *value) +BOOL account_policy_get(int field, uint32 *value) { fstring name; @@ -120,7 +120,7 @@ BOOL account_policy_get(int field, int *value) /**************************************************************************** ****************************************************************************/ -BOOL account_policy_set(int field, int value) +BOOL account_policy_set(int field, uint32 value) { fstring name; -- cgit