Commit e8477885 authored by Max Kellermann's avatar Max Kellermann

lib/smbclient/Init: return empty username/password

This appears to be the right thing to do when we want anonymous login.
parent 86ca5b3f
......@@ -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
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment