diff options
author | Günther Deschner <gd@samba.org> | 2008-12-02 23:26:48 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-12-05 14:27:03 +0100 |
commit | e97149087ac45d178e18f648c8c25bb8c2d9759c (patch) | |
tree | 500675a921065cf198c9d6edd30b41adc248910e /source3 | |
parent | eb906e1d2d61325487fa7e0bcd50fcf4a1b623a3 (diff) | |
download | samba-e97149087ac45d178e18f648c8c25bb8c2d9759c.tar.gz samba-e97149087ac45d178e18f648c8c25bb8c2d9759c.tar.bz2 samba-e97149087ac45d178e18f648c8c25bb8c2d9759c.zip |
s3-samr: fix rpcclient after idl change.
Guenther
Diffstat (limited to 'source3')
-rw-r--r-- | source3/rpcclient/cmd_samr.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source3/rpcclient/cmd_samr.c b/source3/rpcclient/cmd_samr.c index 139702cc74..979941193f 100644 --- a/source3/rpcclient/cmd_samr.c +++ b/source3/rpcclient/cmd_samr.c @@ -219,9 +219,8 @@ static void display_sam_dom_info_13(struct samr_DomInfo13 *info13) printf("Sequence No:\t%llu\n", (unsigned long long)info13->sequence_num); printf("Domain Create Time:\t%s\n", http_timestring(talloc_tos(), nt_time_to_unix(info13->domain_create_time))); - printf("Unknown1:\t%d\n", info13->unknown1); - printf("Unknown2:\t%d\n", info13->unknown2); - + printf("Sequence No at last promotion:\t%llu\n", + (unsigned long long)info13->modified_count_at_last_promotion); } static void display_sam_info_1(struct samr_DispEntryGeneral *r) |