Skip to content
This repository has been archived by the owner on Sep 16, 2024. It is now read-only.

ftp fix month from Ago to Aug #607

Open
wants to merge 1 commit into
base: Dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion esp32/ftp/ftp.c
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ static const ftp_cmd_t ftp_cmd_table[] = { { "FEAT" }, { "SYST" }, { "CDUP" }, {
{ "NOOP" }, { "QUIT" } };

static const ftp_month_t ftp_month[] = { { "Jan" }, { "Feb" }, { "Mar" }, { "Apr" },
{ "May" }, { "Jun" }, { "Jul" }, { "Ago" },
{ "May" }, { "Jun" }, { "Jul" }, { "Aug" },
{ "Sep" }, { "Oct" }, { "Nov" }, { "Dec" } };

static SocketFifoElement_t ftp_fifoelements[FTP_SOCKETFIFO_ELEMENTS_MAX];
Expand Down