1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-30 21:49:25 +00:00
freebsd-ports/japanese/samba/files/patch-ca
SADA Kenji e2db3e2d5d Make messages from ``smbclient -L'' to be in appropriate Japanese code
which is specified in ``smb.conf''.

PR:		ports/22214
Submitted by:	Maintainer
2000-10-22 20:35:59 +00:00

12 lines
519 B
Plaintext

--- client/client.c.orig Wed May 10 23:28:49 2000
+++ client/client.c Mon Oct 23 00:40:14 2000
@@ -1577,7 +1577,7 @@
****************************************************************************/
static void server_fn(const char *name, uint32 m, const char *comment)
{
- printf("\t%-16.16s %s\n", name, comment);
+ printf("\t%-16.16s %s\n", unix_to_dos((char *)name, True), unix_to_dos((char *)comment, True));
}
/****************************************************************************