diff options
author | Tim Potter <tpot@samba.org> | 2002-08-22 23:39:26 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2002-08-22 23:39:26 +0000 |
commit | 266fd83651bb5b2446e136492b82c836a8be095b (patch) | |
tree | 357b96bbef47f907e5a1efb836f25cbd5b77146f /source3/rpcclient/cmd_netlogon.c | |
parent | e6de7c24a5d60f0481eef9695780890e360802f9 (diff) | |
download | samba-266fd83651bb5b2446e136492b82c836a8be095b.tar.gz samba-266fd83651bb5b2446e136492b82c836a8be095b.tar.bz2 samba-266fd83651bb5b2446e136492b82c836a8be095b.zip |
Added some new delta types discovered by Ronnie from ethereal"
- SAM_DELTA_RENAME{USER,GROUP,ALIAS}
- SAM_DELTA_DELETE{USER,GROUP}
Renamed some of the unknown delta types and their unmarshalling functions:
- SAM_DELTA_TRUST_DOMS
- SAM_DELTA_SECRET_INFO
(This used to be commit 1f29276c2ff450c4ca3705c27fb0be71ddcda4ad)
Diffstat (limited to 'source3/rpcclient/cmd_netlogon.c')
-rw-r--r-- | source3/rpcclient/cmd_netlogon.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/source3/rpcclient/cmd_netlogon.c b/source3/rpcclient/cmd_netlogon.c index c3bc9e5e13..198787f22b 100644 --- a/source3/rpcclient/cmd_netlogon.c +++ b/source3/rpcclient/cmd_netlogon.c @@ -125,11 +125,10 @@ static void display_sam_sync(uint32 num_deltas, SAM_DELTA_HDR *hdr_deltas, group->rids[j], group->attribs[j]); break; } - case SAM_DELTA_SAM_STAMP: { - SAM_DELTA_STAMP *stamp = &deltas[i].stamp; + case SAM_DELTA_MODIFIED_COUNT: { + SAM_DELTA_MOD_COUNT *mc = &deltas[i].mod_count; - printf("sam sequence update: 0x%04x\n", - stamp->seqnum); + printf("sam sequence update: 0x%04x\n", mc->seqnum); break; } default: |