diff options
Diffstat (limited to 'source3/client')
-rw-r--r-- | source3/client/client.c | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/source3/client/client.c b/source3/client/client.c index 3cefbc2284..5e464ea111 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -3599,6 +3599,7 @@ static BOOL list_servers() pstring param; int uLevel = 1; int count = 0; + BOOL ok = False; /* now send a SMBtrans command with api ServerEnum? */ p = param; @@ -3645,7 +3646,8 @@ static BOOL list_servers() printf("\t%-16.16s %s\n", sname, comment_offset?rdata+comment_offset-converter:""); - + + ok=True; p2 += 26; } } @@ -3683,6 +3685,7 @@ static BOOL list_servers() sname, comment_offset?rdata+comment_offset-converter:""); + ok=True; p2 += 26; } } @@ -3691,7 +3694,7 @@ static BOOL list_servers() if (rparam) free(rparam); if (rdata) free(rdata); - return(count>0); + return(ok); } |