diff --git a/Changelog b/Changelog index 017822e..6a1d7c3 100644 --- a/Changelog +++ b/Changelog @@ -1,3 +1,6 @@ +21.04.2014 ++ FTP MLSD support added + 08.04.2014 Releasing as 0.7 Significant changes since 0.6.1: diff --git a/src/ftppr.c b/src/ftppr.c index 90f18c0..0d47b4e 100644 --- a/src/ftppr.c +++ b/src/ftppr.c @@ -174,6 +174,7 @@ param->srv->logfunc(param,buf); !(strncasecmp((char *)buf, "RETR ", 5) && (param->operation = FTP_GET)) || !(strncasecmp((char *)buf, "LIST", 4) && (param->operation = FTP_LIST))|| !(strncasecmp((char *)buf, "NLST ", 5) && (param->operation = FTP_LIST)) || + !(strncasecmp((char *)buf, "MLSD", 4) && (param->operation = FTP_LIST)) || !(strncasecmp((char *)buf, "APPE ", 5) && (param->operation = FTP_PUT)) || !(strncasecmp((char *)buf, "STOR ", 5) && (param->operation = FTP_PUT)) )){