lib/smbclient/Init: return empty username/password
This appears to be the right thing to do when we want anonymous login.
This commit is contained in:
parent
86ca5b3f16
commit
e847788569
|
@ -34,8 +34,8 @@ mpd_smbc_get_auth_data(gcc_unused const char *srv,
|
|||
{
|
||||
// TODO: implement
|
||||
strcpy(wg, "WORKGROUP");
|
||||
strcpy(un, "foo");
|
||||
strcpy(pw, "bar");
|
||||
strcpy(un, "");
|
||||
strcpy(pw, "");
|
||||
}
|
||||
|
||||
bool
|
||||
|
|
Loading…
Reference in New Issue