From: Martin Pool Date: Thu, 10 Jan 2002 03:53:06 +0000 (+0000) Subject: browse_fn: FIXME: If the remote machine returns non-ascii characters X-Git-Tag: samba-4.0.0alpha6~801^2~16094 X-Git-Url: http://git.samba.org/samba.git/?p=ira%2Fwip.git;a=commitdiff_plain;h=b8b7ab052a305508eded8e6e32fb954aa9851612 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) --- diff --git a/source3/client/client.c b/source3/client/client.c index f5f27474d99..61a123b9e54 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); }