diff options
author | Luke Leighton <lkcl@samba.org> | 1999-10-25 17:10:54 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1999-10-25 17:10:54 +0000 |
commit | fdf6383cbec457e3e38b50bcc801661767fa4c0d (patch) | |
tree | f95cb6b6622c51984dede97bfdacd9fcf0215860 /source3/include/proto.h | |
parent | 2adba4bfbbe360cd8c1eca1b90354fd63c503dd0 (diff) | |
download | samba-fdf6383cbec457e3e38b50bcc801661767fa4c0d.tar.gz samba-fdf6383cbec457e3e38b50bcc801661767fa4c0d.tar.bz2 samba-fdf6383cbec457e3e38b50bcc801661767fa4c0d.zip |
signed / unsigned and typecast issues
(This used to be commit 6e22bf912cb981d91834c63098d41f5f8abaa594)
Diffstat (limited to 'source3/include/proto.h')
-rw-r--r-- | source3/include/proto.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/include/proto.h b/source3/include/proto.h index 872c9f6afb..60ed7f721d 100644 --- a/source3/include/proto.h +++ b/source3/include/proto.h @@ -1900,17 +1900,17 @@ BOOL samr_enum_dom_groups(struct cli_state *cli, uint16 fnum, POLICY_HND *pol, uint32 start_idx, uint32 size, struct acct_info **sam, - int *num_sam_groups); + uint32 *num_sam_groups); BOOL samr_enum_dom_aliases(struct cli_state *cli, uint16 fnum, POLICY_HND *pol, uint32 start_idx, uint32 size, struct acct_info **sam, - int *num_sam_aliases); + uint32 *num_sam_aliases); uint32 samr_enum_dom_users(struct cli_state *cli, uint16 fnum, POLICY_HND *pol, uint32 *start_idx, uint16 acb_mask, uint16 unk_1, uint32 size, struct acct_info **sam, - int *num_sam_users); + uint32 *num_sam_users); BOOL samr_connect(struct cli_state *cli, uint16 fnum, char *srv_name, uint32 unknown_0, POLICY_HND *connect_pol); |