FTPc: hide password.

git-svn-id: svn://kolibrios.org@3803 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr 2013-07-10 10:23:07 +00:00
parent c32d5d4bbb
commit 99eec4c8b8

View File

@ -242,6 +242,7 @@ wait_for_usercommand:
invoke con_write_asciiz, str_pass invoke con_write_asciiz, str_pass
mov dword[s], "PASS" mov dword[s], "PASS"
mov byte[s+4], " " mov byte[s+4], " "
invoke con_set_flags, 0x00 ; black text on black background for password
.send: .send:
; read string ; read string
@ -300,7 +301,7 @@ exit:
; data ; data
title db 'FTP client',0 title db 'FTP client',0
str1 db 'FTP client for KolibriOS v0.05',10,10,'Please enter ftp server address.',10,0 str1 db 'FTP client for KolibriOS v0.06',10,10,'Please enter ftp server address.',10,0
str2 db '> ',0 str2 db '> ',0
str3 db 'Resolving ',0 str3 db 'Resolving ',0
str4 db 10,0 str4 db 10,0