summaryrefslogtreecommitdiff
path: root/source3/client/client.c
diff options
context:
space:
mode:
authorGerald Carter <jerry@samba.org>2004-03-02 04:19:47 +0000
committerGerald Carter <jerry@samba.org>2004-03-02 04:19:47 +0000
commit52be5d83191a46151511531824d1d12c1615808d (patch)
tree0d8b3956f4c92bbf35374c1d881283be1bd67b07 /source3/client/client.c
parentfcab2e5cfb524afa327fbafa2915c73527f14ea6 (diff)
downloadsamba-52be5d83191a46151511531824d1d12c1615808d.tar.gz
samba-52be5d83191a46151511531824d1d12c1615808d.tar.bz2
samba-52be5d83191a46151511531824d1d12c1615808d.zip
merging from 3.0
(This used to be commit fae17e0f9d228bab9992287507babd6a8fd53f97)
Diffstat (limited to 'source3/client/client.c')
-rw-r--r--source3/client/client.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/client/client.c b/source3/client/client.c
index d4ad5fa1fe..547ebe8029 100644
--- a/source3/client/client.c
+++ b/source3/client/client.c
@@ -2003,7 +2003,7 @@ static void browse_fn(const char *name, uint32 m,
in any of these fields, they can corrupt the output. We
should remove them. */
if (!grepable) {
- d_printf("\t%-15.15s%-10.10s%s\n",
+ d_printf("\t%-15s %-10.10s%s\n",
name,typestr,comment);
} else {
d_printf ("%s|%s|%s\n",typestr,name,comment);
@@ -2018,8 +2018,8 @@ static BOOL browse_host(BOOL sort)
{
int ret;
if (!grepable) {
- d_printf("\n\tSharename Type Comment\n");
- d_printf("\t--------- ---- -------\n");
+ d_printf("\n\tSharename Type Comment\n");
+ d_printf("\t--------- ---- -------\n");
}
if((ret = cli_RNetShareEnum(cli, browse_fn, NULL)) == -1)
@@ -2037,7 +2037,7 @@ static void server_fn(const char *name, uint32 m,
{
if (!grepable){
- d_printf("\t%-16.16s %s\n", name, comment);
+ d_printf("\t%-16s %s\n", name, comment);
} else {
d_printf("%s|%s|%s\n",(char *)state, name, comment);
}