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:
Max Kellermann 2014-01-26 00:08:31 +01:00
parent 86ca5b3f16
commit e847788569

View File

@ -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