diff options
author | Andrew Bartlett <abartlet@samba.org> | 2002-06-14 14:13:41 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2002-06-14 14:13:41 +0000 |
commit | a98d2b1e1788d3207278340330052fc09245e8d2 (patch) | |
tree | fdff8edc823af86f8a60fdfeeabe3717c1b30564 | |
parent | 58bec5e2fd8013d187d0840a384f3c4d76102d3f (diff) | |
download | samba-a98d2b1e1788d3207278340330052fc09245e8d2.tar.gz samba-a98d2b1e1788d3207278340330052fc09245e8d2.tar.bz2 samba-a98d2b1e1788d3207278340330052fc09245e8d2.zip |
Add a touch of const to this - helps with some yet-to-be-commited changes
(This used to be commit a2c791c0bbce1d505e5ef2150384ad5d54ae7117)
-rw-r--r-- | source3/rpc_parse/parse_net.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source3/rpc_parse/parse_net.c b/source3/rpc_parse/parse_net.c index e8a7b8e75d..98266e0fb2 100644 --- a/source3/rpc_parse/parse_net.c +++ b/source3/rpc_parse/parse_net.c @@ -1218,10 +1218,10 @@ void init_net_user_info3(TALLOC_CTX *ctx, NET_USER_INFO_3 *usr, time_t unix_pass_must_change_time, uint16 logon_count, uint16 bad_pw_count, - uint32 num_groups, DOM_GID *gids, + uint32 num_groups, const DOM_GID *gids, uint32 user_flgs, uchar *sess_key, - char *logon_srv, char *logon_dom, - DOM_SID *dom_sid, char *other_sids) + const char *logon_srv, const char *logon_dom, + const DOM_SID *dom_sid, char *other_sids) { /* only cope with one "other" sid, right now. */ /* need to count the number of space-delimited sids */ |