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
1 changed files with 2 additions and 2 deletions

View File

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