summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>1996-07-18 10:09:01 +0000
committerAndrew Tridgell <tridge@samba.org>1996-07-18 10:09:01 +0000
commit1fd1d7c27c4be1eba0833c787d40f1217e63127d (patch)
treead3a06982160b8f818a9c282d625fa7b7f0dc4c6 /source
parent45d3b2644733333c657c48a69719fec72881f7df (diff)
downloadsamba-1fd1d7c27c4be1eba0833c787d40f1217e63127d.tar.gz
samba-1fd1d7c27c4be1eba0833c787d40f1217e63127d.tar.xz
samba-1fd1d7c27c4be1eba0833c787d40f1217e63127d.zip
removed some debug stuff from luke
Diffstat (limited to 'source')
-rw-r--r--source/client/client.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/source/client/client.c b/source/client/client.c
index 14a6e20ab58..27837d08dcb 100644
--- a/source/client/client.c
+++ b/source/client/client.c
@@ -3643,10 +3643,9 @@ static BOOL list_servers(char *wk_grp)
for (i=0;i<count;i++) {
char *sname = p2;
int comment_offset = IVAL(p2,22) & 0xFFFF;
- uint32 stype = IVAL(p2,18);
- printf("\t%-16.16s %s %8x\n",
+ printf("\t%-16.16s %s\n",
sname,
- comment_offset?rdata+comment_offset-converter:"", stype);
+ comment_offset?rdata+comment_offset-converter:"");
ok=True;
p2 += 26;
@@ -3682,10 +3681,9 @@ static BOOL list_servers(char *wk_grp)
for (i=0;i<count;i++) {
char *sname = p2;
int comment_offset = IVAL(p2,22) & 0xFFFF;
- uint32 stype =IVAL(p2,18);
- printf("\t%-16.16s %s %8x\n",
+ printf("\t%-16.16s %s\n",
sname,
- comment_offset?rdata+comment_offset-converter:"",stype);
+ comment_offset?rdata+comment_offset-converter:"");
ok=True;
p2 += 26;