Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-2-2
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
videolan
vlc-2-2
Commits
ec01f1da
Commit
ec01f1da
authored
Jun 19, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Never print the password in the logs.
parent
5e432a0d
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
14 deletions
+4
-14
modules/access/http.c
modules/access/http.c
+1
-8
modules/access/rtmp/access.c
modules/access/rtmp/access.c
+1
-2
modules/access_output/rtmp.c
modules/access_output/rtmp.c
+1
-2
modules/demux/live555.cpp
modules/demux/live555.cpp
+1
-2
No files found.
modules/access/http.c
View file @
ec01f1da
...
...
@@ -452,14 +452,7 @@ connect:
p_sys
->
auth
.
psz_realm
);
if
(
psz_login
!=
NULL
&&
psz_password
!=
NULL
)
{
msg_Dbg
(
p_access
,
"retrying with user=%s, pwd=%s"
,
psz_login
,
#if 1
"yeah right, like we're going to print a password."
#else
psz_password
#endif
);
msg_Dbg
(
p_access
,
"retrying with user=%s"
,
psz_login
);
p_sys
->
url
.
psz_username
=
psz_login
;
p_sys
->
url
.
psz_password
=
psz_password
;
Disconnect
(
p_access
);
...
...
modules/access/rtmp/access.c
View file @
ec01f1da
...
...
@@ -128,8 +128,7 @@ static int Open( vlc_object_t *p_this )
if
(
p_sys
->
p_thread
->
url
.
psz_username
&&
*
p_sys
->
p_thread
->
url
.
psz_username
)
{
msg_Dbg
(
p_access
,
" user='%s', pwd='%s'"
,
p_sys
->
p_thread
->
url
.
psz_username
,
p_sys
->
p_thread
->
url
.
psz_password
);
msg_Dbg
(
p_access
,
" user='%s'"
,
p_sys
->
p_thread
->
url
.
psz_username
);
}
/* Initialize thread variables */
...
...
modules/access_output/rtmp.c
View file @
ec01f1da
...
...
@@ -136,8 +136,7 @@ static int Open( vlc_object_t *p_this )
if
(
p_sys
->
p_thread
->
url
.
psz_username
&&
*
p_sys
->
p_thread
->
url
.
psz_username
)
{
msg_Dbg
(
p_access
,
" user='%s', pwd='%s'"
,
p_sys
->
p_thread
->
url
.
psz_username
,
p_sys
->
p_thread
->
url
.
psz_password
);
msg_Dbg
(
p_access
,
" user='%s'"
,
p_sys
->
p_thread
->
url
.
psz_username
);
}
/* Initialize thread variables */
...
...
modules/demux/live555.cpp
View file @
ec01f1da
...
...
@@ -620,8 +620,7 @@ describe:
_
(
"Please enter a valid login name and a password."
)
);
if
(
psz_user
!=
NULL
&&
psz_pwd
!=
NULL
)
{
msg_Dbg
(
p_demux
,
"retrying with user=%s, pwd=%s"
,
psz_user
,
psz_pwd
);
msg_Dbg
(
p_demux
,
"retrying with user=%s"
,
psz_user
);
goto
describe
;
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment