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

index 1ea8e75508afcc77c1d773e3576821ec69a37958..4de6a5d38d7d3817b7e8b7edb0df39fef53e26ee 100644 (file)
@@ -164,9 +164,8 @@ static int Open( vlc_object_t *p_this )
     if( get_address( p_access ) != VLC_SUCCESS )
         goto error;
 
-    msg_Dbg( p_access, "Creds: username = %s, password = %s, domain = %s",
-             p_sys->creds.login, p_sys->creds.password,
-             p_sys->creds.domain );
+    msg_Dbg( p_access, "Creds: username = %s, domain = %s",
+             p_sys->creds.login, p_sys->creds.domain );
     msg_Dbg( p_access, "Session: Host name = %s, ip = %s", p_sys->netbios_name,
              inet_ntoa( p_sys->addr ) );