From b8b7ab052a305508eded8e6e32fb954aa9851612 Mon Sep 17 00:00:00 2001 From: Martin Pool Date: Thu, 10 Jan 2002 03:53:06 +0000 Subject: browse_fn: FIXME: If the remote machine returns non-ascii characters in any of these fields, they can corrupt the output. We should remove them. (This used to be commit 934aacdb39a0c21c43505dbba696b746f1333df3) --- source3/client/client.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'source3/client') diff --git a/source3/client/client.c b/source3/client/client.c index f5f27474d9..61a123b9e5 100644 --- a/source3/client/client.c +++ b/source3/client/client.c @@ -1751,6 +1751,9 @@ static void browse_fn(const char *name, uint32 m, case STYPE_IPC: fstrcpy(typestr,"IPC"); break; } + /* FIXME: If the remote machine returns non-ascii characters + in any of these fields, they can corrupt the output. We + should remove them. */ d_printf("\t%-15.15s%-10.10s%s\n", name,typestr,comment); } -- cgit