From 6661f221c5c60dcc48170af4148fc229d61bb702 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Duraffort?= Date: Thu, 3 Sep 2009 11:23:20 +0200 Subject: [PATCH] ftp: let the user see the password in the conf (was a bad idea to hide it). --- modules/access/ftp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/access/ftp.c b/modules/access/ftp.c index 7a463e9309..dffea0dd7a 100644 --- a/modules/access/ftp.c +++ b/modules/access/ftp.c @@ -79,8 +79,8 @@ vlc_module_begin () change_safe() add_string( "ftp-user", "anonymous", NULL, USER_TEXT, USER_LONGTEXT, false ) - add_password( "ftp-pwd", "anonymous@example.com", NULL, PASS_TEXT, - PASS_LONGTEXT, false ) + add_string( "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" ) -- 2.39.5