Fixed support for multiline commands. (fix #80)

git-svn-id: svn://kolibrios.org@4729 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
hidnplayr 2014-04-01 07:20:52 +00:00
parent 74e44c8770
commit 253010b9f1
2 changed files with 4 additions and 2 deletions

View File

@ -1,6 +1,6 @@
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;; ;;
;; Copyright (C) KolibriOS team 2013. All rights reserved. ;;
;; Copyright (C) KolibriOS team 2013-2014. All rights reserved. ;;
;; Distributed under terms of the GNU General Public License ;;
;; ;;
;; ftpc.asm - FTP client for KolibriOS ;;
@ -328,7 +328,7 @@ exit:
; data
str_title db 'FTP client',0
str_welcome db 'FTP client for KolibriOS v0.10',10
str_welcome db 'FTP client for KolibriOS v0.11',10
db 10
db 'Please enter ftp server address.',10,0

View File

@ -38,6 +38,8 @@ server_parser:
cmp dword[s], "550 "
je close_datacon
cmp byte[s+3], "-"
je wait_for_servercommand
jmp wait_for_usercommand