Commit f0a8251d authored by Thomas Guillem's avatar Thomas Guillem Committed by Jean-Baptiste Kempf

dsm: don't log password on error

Signed-off-by: default avatarJean-Baptiste Kempf <jb@videolan.org>
parent 5253cf28
...@@ -407,9 +407,8 @@ static int login( access_t *p_access ) ...@@ -407,9 +407,8 @@ static int login( access_t *p_access )
} }
/* FIXME, Try to force netbios name as domain then WORKGROUP here */ /* FIXME, Try to force netbios name as domain then WORKGROUP here */
msg_Err( p_access, "Unable to login with username = %s, password = %s, domain = %s", msg_Err( p_access, "Unable to login with username = %s, domain = %s",
p_sys->creds.login, p_sys->creds.password, p_sys->creds.login, p_sys->creds.domain );
p_sys->creds.domain );
return VLC_EGENERIC; return VLC_EGENERIC;
} }
else if( smb_session_is_guest( p_sys->p_session ) == 1 ) else if( smb_session_is_guest( p_sys->p_session ) == 1 )
......
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