diff --git a/.gitignore b/.gitignore index 73f884f..22ac573 100644 --- a/.gitignore +++ b/.gitignore @@ -26,6 +26,7 @@ doc/html/index.html *.var verfile.sh Makefile +Changelog copytgz.sh *~.nib local.properties diff --git a/src/ftppr.c b/src/ftppr.c index 4feeb7b..6fd5342 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)) )){