diff options
author | Günther Deschner <gd@samba.org> | 2008-09-24 09:05:37 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-09-25 20:11:55 +0200 |
commit | 81fde585516957b6a7742e0168c68df33572ed74 (patch) | |
tree | 23af0592c243f526000eec737111e9fe96021848 /source3/utils | |
parent | 6f46002ff6b153730635bfd4a8380792a815ce6b (diff) | |
download | samba-81fde585516957b6a7742e0168c68df33572ed74.tar.gz samba-81fde585516957b6a7742e0168c68df33572ed74.tar.bz2 samba-81fde585516957b6a7742e0168c68df33572ed74.zip |
s3-nbt: remove double nbt netlogon opcodes.
Guenther
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_ads.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/utils/net_ads.c b/source3/utils/net_ads.c index 1ef4c152a3..627374cb96 100644 --- a/source3/utils/net_ads.c +++ b/source3/utils/net_ads.c @@ -56,11 +56,11 @@ static int net_ads_cldap_netlogon(struct net_context *c, ADS_STRUCT *ads) d_printf("Response Type: "); switch (reply.command) { - case SAMLOGON_AD_UNK_R: - d_printf("SAMLOGON\n"); + case LOGON_SAM_LOGON_USER_UNKNOWN_EX: + d_printf("LOGON_SAM_LOGON_USER_UNKNOWN_EX\n"); break; - case SAMLOGON_AD_R: - d_printf("SAMLOGON_USER\n"); + case LOGON_SAM_LOGON_RESPONSE_EX: + d_printf("LOGON_SAM_LOGON_RESPONSE_EX\n"); break; default: d_printf("0x%x\n", reply.command); |