diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-12-31 13:46:26 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-12-31 13:46:26 +0000 |
commit | 48aa90c48c5f0e3054c4acdc49668e222e7c0d36 (patch) | |
tree | 18df9c877e8f0cd8b714188df97dcb4832929e95 /source/lib/account_pol.c | |
parent | 2d1612dd3560bb5ef35fa1eeee00e3d7976bcd62 (diff) | |
download | samba-48aa90c48c5f0e3054c4acdc49668e222e7c0d36.tar.gz |
- portablitity fixes for cc -64 on irix
- fixed gid* bug in rpc_server
Diffstat (limited to 'source/lib/account_pol.c')
-rw-r--r-- | source/lib/account_pol.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/lib/account_pol.c b/source/lib/account_pol.c index 74c8883ed13..1b70d0ceb0c 100644 --- a/source/lib/account_pol.c +++ b/source/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; |