Browse Source

ftp: set password option to password type

(cherry picked from commit 546d021089)
pull/135/head
Lyndon Brown 7 years ago
committed by Jean-Baptiste Kempf
parent
commit
c3787eaecf
  1. 2
      modules/access/ftp.c

2
modules/access/ftp.c

@ -86,7 +86,7 @@ vlc_module_begin ()
set_category( CAT_INPUT )
set_subcategory( SUBCAT_INPUT_ACCESS )
add_string( "ftp-user", NULL, USER_TEXT, USER_LONGTEXT, false )
add_string( "ftp-pwd", NULL, PASS_TEXT, PASS_LONGTEXT, false )
add_password( "ftp-pwd", NULL, PASS_TEXT, PASS_LONGTEXT, false )
add_string( "ftp-account", "anonymous", ACCOUNT_TEXT,
ACCOUNT_LONGTEXT, false )
add_shortcut( "ftp", "ftps", "ftpes" )

Loading…
Cancel
Save