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
fdd5a55a
Commit
fdd5a55a
authored
Sep 07, 2007
by
Rafaël Carré
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Uses add_password for passwords
parent
d385374e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
modules/control/telnet.c
modules/control/telnet.c
+1
-1
modules/misc/notify/growl.c
modules/misc/notify/growl.c
+1
-1
No files found.
modules/control/telnet.c
View file @
fdd5a55a
...
...
@@ -88,7 +88,7 @@ vlc_module_begin();
TELNETHOST_LONGTEXT
,
VLC_TRUE
);
add_integer
(
"telnet-port"
,
TELNETPORT_DEFAULT
,
NULL
,
TELNETPORT_TEXT
,
TELNETPORT_LONGTEXT
,
VLC_TRUE
);
add_
string
(
"telnet-password"
,
TELNETPWD_DEFAULT
,
NULL
,
TELNETPWD_TEXT
,
add_
password
(
"telnet-password"
,
TELNETPWD_DEFAULT
,
NULL
,
TELNETPWD_TEXT
,
TELNETPWD_LONGTEXT
,
VLC_TRUE
);
set_description
(
_
(
"VLM remote control interface"
)
);
add_category_hint
(
"VLM"
,
NULL
,
VLC_FALSE
);
...
...
modules/misc/notify/growl.c
View file @
fdd5a55a
...
...
@@ -70,7 +70,7 @@ vlc_module_begin();
add_string
(
"growl-server"
,
SERVER_DEFAULT
,
NULL
,
SERVER_TEXT
,
SERVER_LONGTEXT
,
VLC_FALSE
);
add_
string
(
"growl-password"
,
PASS_DEFAULT
,
NULL
,
add_
password
(
"growl-password"
,
PASS_DEFAULT
,
NULL
,
PASS_TEXT
,
PASS_LONGTEXT
,
VLC_FALSE
);
add_integer
(
"growl-port"
,
9887
,
NULL
,
PORT_TEXT
,
PORT_LONGTEXT
,
VLC_TRUE
);
...
...
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