forked from KolibriOS/kolibrios
Fixed support for multiline commands. (fix #80)
git-svn-id: svn://kolibrios.org@4729 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
parent
74e44c8770
commit
253010b9f1
@ -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
|
||||
|
||||
|
@ -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
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user