Browse Source

Cygwin: fhandler_netdrive: use WNNC_NET_SMB instead of WNNC_NET_LANMAN

Signed-off-by: Corinna Vinschen <corinna@vinschen.de>
master
Corinna Vinschen 2 years ago
parent
commit
b95ab5982e
  1. 4
      winsup/cygwin/fhandler/netdrive.cc

4
winsup/cygwin/fhandler/netdrive.cc

@ -367,7 +367,7 @@ create_thread_and_wait (DIR *dir)
/* For the Network root, fetch WSD info. */
if (strlen (dir->__d_dirname) == 2)
{
ndi.provider = WNNC_NET_LANMAN;
ndi.provider = WNNC_NET_SMB;
ndi.sem = CreateSemaphore (&sec_none_nih, 0, 2, NULL);
thr = new cygthread (thread_netdrive_wsd, &ndi, "netdrive_wsd");
if (thr->detach (ndi.sem))
@ -399,7 +399,7 @@ create_thread_and_wait (DIR *dir)
if (!strcmp (dir->__d_dirname + 2, "tsclient"))
ndi.provider = WNNC_NET_TERMSRV;
else
ndi.provider = WNNC_NET_LANMAN;
ndi.provider = WNNC_NET_SMB;
ndi.sem = CreateSemaphore (&sec_none_nih, 0, 2, NULL);
thr = new cygthread (thread_netdrive_wnet, &ndi, "netdrive_smb");
if (thr->detach (ndi.sem))

Loading…
Cancel
Save