1
1

* vfs.c (vfs_get_password): Use INPUT_PASSWORD to request a

password reliably.
Этот коммит содержится в:
Pavel Roskin 2002-09-03 17:38:30 +00:00
родитель 77791e773f
Коммит 8355430596
2 изменённых файлов: 7 добавлений и 2 удалений

Просмотреть файл

@ -1,3 +1,8 @@
2002-09-03 Pavel Roskin <proski@gnu.org>
* vfs.c (vfs_get_password): Use INPUT_PASSWORD to request a
password reliably.
2002-09-02 Andrew V. Samoilov <sav@bcs.zp.ua>
* smbfs.c (smbfs_close): Return -1 if cli->outbuf is NULL and

Просмотреть файл

@ -51,7 +51,7 @@
#include "../src/panel.h"
#include "../src/key.h" /* Required for the async alarm handler */
#include "../src/layout.h" /* For get_panel_widget and get_other_index */
#include "../src/dialog.h"
#include "../src/wtools.h" /* input_dialog() */
#endif
#include "xdirentry.h"
@ -1890,7 +1890,7 @@ vfs_print_stats (const char *fs_name, const char *action, const char *file_name,
char *
vfs_get_password (char *msg)
{
return (char *) input_dialog (msg, _("Password:"), "");
return (char *) input_dialog (msg, _("Password:"), INPUT_PASSWORD);
}
#endif