diff options
author | Günther Deschner <gd@samba.org> | 2014-10-23 14:05:40 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2014-10-24 11:30:05 +0200 |
commit | eb8d914d913bc7d98492361baf2b8eb721bd0069 (patch) | |
tree | f7bafcc20035761505b6b77b900298136d9c4234 /source3/lib/netapi/examples | |
parent | 4c88897471c94cbe923e290a742d5beb9caa2e1b (diff) | |
download | samba-eb8d914d913bc7d98492361baf2b8eb721bd0069.tar.gz samba-eb8d914d913bc7d98492361baf2b8eb721bd0069.tar.xz samba-eb8d914d913bc7d98492361baf2b8eb721bd0069.zip |
s3-netapi: add DS_8 and WS flags to libnetapi and nltest.
Guenther
Signed-off-by: Guenther Deschner <gd@samba.org>
Reviewed-by: Andreas Schneider <asn@samba.org>
Diffstat (limited to 'source3/lib/netapi/examples')
-rw-r--r-- | source3/lib/netapi/examples/netlogon/nltest.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/source3/lib/netapi/examples/netlogon/nltest.c b/source3/lib/netapi/examples/netlogon/nltest.c index 0c393ea3be..f75a995328 100644 --- a/source3/lib/netapi/examples/netlogon/nltest.c +++ b/source3/lib/netapi/examples/netlogon/nltest.c @@ -149,7 +149,10 @@ static void print_dc_info_flags(uint32_t flags) printf("CLOSE_SITE "); if (flags & DS_FULL_SECRET_DOMAIN_6_FLAG) printf("FULL_SECRET "); - /* "WS" */ + if (flags & DS_WS_FLAG) + printf("WS "); + if (flags & DS_DS_8_FLAG) + printf("DS_8 "); printf("\n"); } |