diff options
author | Jeremy Allison <jra@samba.org> | 2003-08-22 00:13:42 +0000 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2003-08-22 00:13:42 +0000 |
commit | e88593f1c0fe330e4b2c3a3e15f5763d77604bb6 (patch) | |
tree | 301a16eee3dc804c1a8832a94e7625803cc14b0d | |
parent | a8eda05d75c8d9652a0279a67886e5d6eaf551f3 (diff) | |
download | samba-e88593f1c0fe330e4b2c3a3e15f5763d77604bb6.tar.gz samba-e88593f1c0fe330e4b2c3a3e15f5763d77604bb6.tar.bz2 samba-e88593f1c0fe330e4b2c3a3e15f5763d77604bb6.zip |
Ensure nmblookup correctly converts from CH_DOS to CH_UNIX when displaying
a printable name on node status.
Jeremy.
(This used to be commit 6585446afd29768fde8c3f882bfb57554cf4e4da)
-rw-r--r-- | source3/utils/nmblookup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/nmblookup.c b/source3/utils/nmblookup.c index d2c5cbc00e..3c5a22841e 100644 --- a/source3/utils/nmblookup.c +++ b/source3/utils/nmblookup.c @@ -109,7 +109,7 @@ static void do_node_status(int fd, const char *name, int type, struct in_addr ip status = node_status_query(fd,&nname,ip, &count); if (status) { for (i=0;i<count;i++) { - fstrcpy(cleanname, status[i].name); + pull_ascii_fstring(cleanname, status[i].name); for (j=0;cleanname[j];j++) { if (!isprint((int)cleanname[j])) cleanname[j] = '.'; } |