[vlc-commits] dsm: don't log password
Thomas Guillem
git at videolan.org
Mon Feb 23 17:46:48 CET 2015
vlc | branch: master | Thomas Guillem <thomas at gllm.fr> | Mon Feb 23 17:38:11 2015 +0100| [77ceba81a2b7088bdf852e93155e9a8b90ecc24c] | committer: Jean-Baptiste Kempf
dsm: don't log password
Signed-off-by: Jean-Baptiste Kempf <jb at videolan.org>
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=77ceba81a2b7088bdf852e93155e9a8b90ecc24c
---
modules/access/dsm/access.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/modules/access/dsm/access.c b/modules/access/dsm/access.c
index 1ea8e75..4de6a5d 100644
--- a/modules/access/dsm/access.c
+++ b/modules/access/dsm/access.c
@@ -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 ) );
More information about the vlc-commits
mailing list