From bf409a40e21e44ec653d4d8fd34b52d0e7b64aed Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sun, 4 Oct 1998 10:48:31 +0000 Subject: [PATCH] support using #xx at end of netbios name to connect to the specified name type --- source/client/client.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/source/client/client.c b/source/client/client.c index c4f763db778..436b0c3c7c1 100644 --- a/source/client/client.c +++ b/source/client/client.c @@ -4104,6 +4104,12 @@ static void usage(char *pname) } else return(1); } + + if ((p=strchr(query_host,'#'))) { + *p = 0; + p++; + sscanf(p, "%x", &name_type); + } if (*query_host && !nt_domain_logon) { -- 2.11.4.GIT