ftpd: Fix typo
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 1m11s
Build system / Build (pull_request) Successful in 16m5s

This commit is contained in:
Igor Shutrov
2026-01-07 23:51:16 +05:00
parent c3d0ce0c70
commit b7fd63d221

View File

@@ -342,7 +342,7 @@ align 4
cmdABOR: cmdABOR:
or [ebp + thread_data.permissions], ABORT or [ebp + thread_data.permissions], ABORT
sendFTP "250 Command succesful" sendFTP "250 Command successful"
ret ret
;------------------------------------------------ ;------------------------------------------------
@@ -383,7 +383,7 @@ cmdCDUP:
invoke con_write_asciiz, eax invoke con_write_asciiz, eax
invoke con_write_asciiz, str_newline invoke con_write_asciiz, str_newline
sendFTP "250 Command succesful" sendFTP "250 Command successful"
ret ret
;------------------------------------------------ ;------------------------------------------------
@@ -448,7 +448,7 @@ cmdCWD:
invoke con_write_asciiz, eax invoke con_write_asciiz, eax
invoke con_write_asciiz, str_newline invoke con_write_asciiz, str_newline
sendFTP "250 Command succesful" sendFTP "250 Command successful"
ret ret
.err: .err:
@@ -510,7 +510,7 @@ cmdDELE:
test eax, eax test eax, eax
jnz .err jnz .err
sendFTP "250 Command succesful" sendFTP "250 Command successful"
ret ret
.err: .err:
sendFTP "550 No such file" sendFTP "550 No such file"