diff options
author | Jeremy Allison <jra@samba.org> | 2003-01-29 20:15:35 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-01-29 20:15:35 +0000 |
commit | f8601187caac93c5b03b2a5c6f06c674291a0a17 (patch) | |
tree | b7bc3f4c54051f8e8bf1be57b7dc7c2222d466c7 /source3/rpc_parse | |
parent | aed54afc2cfc468d29b65b2b503d975070515528 (diff) | |
download | samba-f8601187caac93c5b03b2a5c6f06c674291a0a17.tar.gz samba-f8601187caac93c5b03b2a5c6f06c674291a0a17.tar.bz2 samba-f8601187caac93c5b03b2a5c6f06c674291a0a17.zip |
Merge tpot's changes to request the correct sizes for user dispinfo
from HEAD. I had to do this for him as he was *so* tired, the poor
chap, plus he has this bad leg, plus the dog ate his homework etc. etc.
Jeremy.
(This used to be commit 1e752b48a12cdcf2cb6343705be83f304e5ee2b6)
Diffstat (limited to 'source3/rpc_parse')
-rw-r--r-- | source3/rpc_parse/parse_samr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/rpc_parse/parse_samr.c b/source3/rpc_parse/parse_samr.c index 918cdbcd1d..d031d13955 100644 --- a/source3/rpc_parse/parse_samr.c +++ b/source3/rpc_parse/parse_samr.c @@ -1448,7 +1448,7 @@ inits a SAMR_Q_QUERY_DISPINFO structure. void init_samr_q_query_dispinfo(SAMR_Q_QUERY_DISPINFO * q_e, POLICY_HND *pol, uint16 switch_level, uint32 start_idx, - uint32 max_entries) + uint32 max_entries, uint32 max_size) { DEBUG(5, ("init_samr_q_query_dispinfo\n")); @@ -1458,7 +1458,7 @@ void init_samr_q_query_dispinfo(SAMR_Q_QUERY_DISPINFO * q_e, POLICY_HND *pol, q_e->start_idx = start_idx; q_e->max_entries = max_entries; - q_e->max_size = 0xffff; /* Not especially useful */ + q_e->max_size = max_size; } /******************************************************************* |