Hi,
In line 135 of netbios.cpp I modifed:
----
// DWORD err;
NTSTATUS err;
----
If you leave it as DWORD the check for:
----
if (err < 0)
----
Will not occour since DWORD is a lot larger than
NTSTATUS's long :)
I am guess there are other places that might have the
same problem.