Эх сурвалжийг харах

Merge remote-tracking branch 'origin/master' into devel

Vladimir Dubrovin 11 жил өмнө
parent
commit
9ab9c2524b
2 өөрчлөгдсөн 2 нэмэгдсэн , 0 устгасан
  1. 1 0
      .gitignore
  2. 1 0
      src/ftppr.c

+ 1 - 0
.gitignore

@@ -26,6 +26,7 @@ doc/html/index.html
 *.var
 verfile.sh
 Makefile
+Changelog
 copytgz.sh
 *~.nib
 local.properties

+ 1 - 0
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))
 	)){