diff options
author | Luke Leighton <lkcl@samba.org> | 1997-10-08 17:12:07 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1997-10-08 17:12:07 +0000 |
commit | 8871297885050911aaa802c4e90e282c44e49b84 (patch) | |
tree | 333ad8e43011fc06b0df50e65dbf89d5535853aa /source3/lsaparse.c | |
parent | 827aa6bc6ad8e73a9100c2ae4cad3f0da8a29a58 (diff) | |
download | samba-8871297885050911aaa802c4e90e282c44e49b84.tar.gz samba-8871297885050911aaa802c4e90e282c44e49b84.tar.bz2 samba-8871297885050911aaa802c4e90e282c44e49b84.zip |
loadparm.c proto.h:
added lp_domainsid()
lsaparse.c smb.h:
debugging structures and parsing functions
pipes.c:
finally got to the functions that will go into the RPC switch statement.
(This used to be commit d15aed8a9c58a7cc90befaee2d5a2752708f9327)
Diffstat (limited to 'source3/lsaparse.c')
-rw-r--r-- | source3/lsaparse.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/lsaparse.c b/source3/lsaparse.c index 4b5c4f586a..9ea6f566b2 100644 --- a/source3/lsaparse.c +++ b/source3/lsaparse.c @@ -45,6 +45,8 @@ char* lsa_io_q_query(BOOL io, LSA_Q_QUERY_INFO *q_q, char *q, char *base, int al { if (q_q == NULL) return NULL; + q = smb_io_pol_hnd(io, &(q_q->pol), q, base, align); + RW_SVAL(io, q, q_q->info_class, 0); q += 2; return q; |