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, ...@@ -34,8 +34,8 @@ mpd_smbc_get_auth_data(gcc_unused const char *srv,
{ {
// TODO: implement // TODO: implement
strcpy(wg, "WORKGROUP"); strcpy(wg, "WORKGROUP");
strcpy(un, "foo"); strcpy(un, "");
strcpy(pw, "bar"); strcpy(pw, "");
} }
bool 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