Do not treat the output of NetbiosName() as a wide_t when
it is a char*.
Change-Id: Iba4f1f30f1de4a9c3ded2f1e440ca9e4bc014379
Reviewed-on: http://gerrit.openafs.org/5549
Reviewed-by: Jeffrey Altman <jaltman@openafs.org>
Tested-by: Jeffrey Altman <jaltman@openafs.org>
CString nbroot;
const char * nbname = NetbiosName();
-#ifdef UNICODE
- nbroot.Format(_T("\\\\%S\\"), nbname);
-#else
nbroot.Format(_T("\\\\%s\\"), nbname);
-#endif
if (nbroot.CompareNoCase(path) == 0) {
path.Append(_T("all\\"));