Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
V
vlc-1.1
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-1.1
Commits
e4a86737
Commit
e4a86737
authored
Jun 15, 2009
by
Rémi Duraffort
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use add_password instead of add_string when applicable.
parent
c75c32cb
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
10 additions
and
10 deletions
+10
-10
modules/access/dvb/access.c
modules/access/dvb/access.c
+2
-2
modules/access/ftp.c
modules/access/ftp.c
+2
-2
modules/access/smb.c
modules/access/smb.c
+2
-2
modules/access_output/http.c
modules/access_output/http.c
+2
-2
modules/demux/live555.cpp
modules/demux/live555.cpp
+2
-2
No files found.
modules/access/dvb/access.c
View file @
e4a86737
...
...
@@ -250,8 +250,8 @@ vlc_module_begin ()
true
)
add_string
(
"dvb-http-user"
,
NULL
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
true
)
add_
string
(
"dvb-http-password"
,
NULL
,
NULL
,
PASSWORD_TEXT
,
PASSWORD_LONGTEXT
,
true
)
add_
password
(
"dvb-http-password"
,
NULL
,
NULL
,
PASSWORD_TEXT
,
PASSWORD_LONGTEXT
,
true
)
add_string
(
"dvb-http-acl"
,
NULL
,
NULL
,
ACL_TEXT
,
ACL_LONGTEXT
,
true
)
add_string
(
"dvb-http-intf-cert"
,
NULL
,
NULL
,
CERT_TEXT
,
CERT_LONGTEXT
,
...
...
modules/access/ftp.c
View file @
e4a86737
...
...
@@ -79,8 +79,8 @@ vlc_module_begin ()
change_safe
()
add_string
(
"ftp-user"
,
"anonymous"
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
false
)
add_
string
(
"ftp-pwd"
,
"anonymous@example.com"
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
false
)
add_
password
(
"ftp-pwd"
,
"anonymous@example.com"
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
false
)
add_string
(
"ftp-account"
,
"anonymous"
,
NULL
,
ACCOUNT_TEXT
,
ACCOUNT_LONGTEXT
,
false
)
add_shortcut
(
"ftp"
)
...
...
modules/access/smb.c
View file @
e4a86737
...
...
@@ -86,8 +86,8 @@ vlc_module_begin ()
change_safe
()
add_string
(
"smb-user"
,
NULL
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
false
)
add_
string
(
"smb-pwd"
,
NULL
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
false
)
add_
password
(
"smb-pwd"
,
NULL
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
false
)
add_string
(
"smb-domain"
,
NULL
,
NULL
,
DOMAIN_TEXT
,
DOMAIN_LONGTEXT
,
false
)
add_shortcut
(
"smb"
)
...
...
modules/access_output/http.c
View file @
e4a86737
...
...
@@ -102,8 +102,8 @@ vlc_module_begin ()
set_subcategory
(
SUBCAT_SOUT_ACO
)
add_string
(
SOUT_CFG_PREFIX
"user"
,
""
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
true
)
add_
string
(
SOUT_CFG_PREFIX
"pwd"
,
""
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
true
)
add_
password
(
SOUT_CFG_PREFIX
"pwd"
,
""
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
true
)
add_string
(
SOUT_CFG_PREFIX
"mime"
,
""
,
NULL
,
MIME_TEXT
,
MIME_LONGTEXT
,
true
)
add_string
(
SOUT_CFG_PREFIX
"cert"
,
"vlc.pem"
,
NULL
,
...
...
modules/demux/live555.cpp
View file @
e4a86737
...
...
@@ -134,8 +134,8 @@ vlc_module_begin ()
KASENNA_LONGTEXT
,
true
)
add_string
(
"rtsp-user"
,
NULL
,
NULL
,
USER_TEXT
,
USER_LONGTEXT
,
true
)
add_
string
(
"rtsp-pwd"
,
NULL
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
true
)
add_
password
(
"rtsp-pwd"
,
NULL
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
true
)
vlc_module_end
()
...
...
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