summaryrefslogtreecommitdiffstats
path: root/source/client
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-10-02 15:41:30 +0000
committerAndrew Tridgell <tridge@samba.org>1996-10-02 15:41:30 +0000
commit45e66a69d320024877c8b13f12b21bf895e04410 (patch)
treebdf4244d8e22f17764b424dd378350c842c942de /source/client
parent20b6203dac4bbb43e4e7bea0b214496d76d679d9 (diff)
downloadsamba-45e66a69d320024877c8b13f12b21bf895e04410.tar.gz
samba-45e66a69d320024877c8b13f12b21bf895e04410.tar.xz
samba-45e66a69d320024877c8b13f12b21bf895e04410.zip
backout all the changes to nmbd.
The 1.9.16 tree is now back to 1.9.16p2 as far as nmbd is concerned apart from a small change that fixes the announce type in two places.
Diffstat (limited to 'source/client')
-rw-r--r--source/client/client.c16
1 files changed, 6 insertions, 10 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 6db0f4694ec..cdf33a14b3d 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -3787,12 +3787,10 @@ static BOOL list_servers(char *wk_grp)
for (i=0;i<count;i++) {
char *sname = p2;
- uint32 stype = IVAL(p2,18);
int comment_offset = IVAL(p2,22) & 0xFFFF;
- printf("\t%-16.16s %s (%8x)\n",
- sname,
- comment_offset?rdata+comment_offset-converter:"",
- stype);
+ printf("\t%-16.16s %s\n",
+ sname,
+ comment_offset?rdata+comment_offset-converter:"");
ok=True;
p2 += 26;
@@ -3828,12 +3826,10 @@ static BOOL list_servers(char *wk_grp)
for (i=0;i<count;i++) {
char *sname = p2;
- uint32 stype = IVAL(p2,18);
int comment_offset = IVAL(p2,22) & 0xFFFF;
- printf("\t%-16.16s %s (%8x)\n",
- sname,
- comment_offset?rdata+comment_offset-converter:"",
- stype);
+ printf("\t%-16.16s %s\n",
+ sname,
+ comment_offset?rdata+comment_offset-converter:"");
ok=True;
p2 += 26;