]> git.sesse.net Git - vlc/commitdiff
dsm: don't log password on error
authorThomas Guillem <thomas@gllm.fr>
Mon, 23 Feb 2015 16:50:48 +0000 (17:50 +0100)
committerJean-Baptiste Kempf <jb@videolan.org>
Mon, 23 Feb 2015 16:52:57 +0000 (17:52 +0100)
Signed-off-by: Jean-Baptiste Kempf <jb@videolan.org>
modules/access/dsm/access.c

index 4de6a5d38d7d3817b7e8b7edb0df39fef53e26ee..79ee7991ae7f2be18f813c9e2cb16d89b6f01280 100644 (file)
@@ -407,9 +407,8 @@ static int login( access_t *p_access )
         }
 
         /* 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",
-                   p_sys->creds.login, p_sys->creds.password,
-                   p_sys->creds.domain );
+        msg_Err( p_access, "Unable to login with username = %s, domain = %s",
+                   p_sys->creds.login, p_sys->creds.domain );
         return VLC_EGENERIC;
     }
     else if( smb_session_is_guest( p_sys->p_session ) == 1 )