1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-20 00:21:35 +00:00

Some ftp clients, such as "FileZilla" use the "MLSD" command to

retrieve accurate directory listsings.

Proftpd and other ftp servers support this, but the jftpgw ftp proxy
doesn't, causing the client to hang.

This patch adds this capability.

PR:             ports/136688
Submitted by:   Jamie Landeg Jones <jamie@bishopston.net>
This commit is contained in:
Philip M. Gollucci 2009-07-17 04:05:41 +00:00
parent 5f15c0030f
commit 715b3b08e3
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=237965
2 changed files with 11 additions and 1 deletions

View File

@ -7,7 +7,7 @@
PORTNAME= jftpgw
PORTVERSION= 0.13.5
PORTREVISION= 3
PORTREVISION= 4
CATEGORIES= ftp
MASTER_SITES= http://www.mcknight.de/jftpgw/

View File

@ -0,0 +1,10 @@
--- ./std_cmds.h.orig 2009-07-17 00:00:04.686943825 -0400
+++ ./std_cmds.h 2009-07-17 00:00:25.530073049 -0400
@@ -42,6 +42,7 @@
{ "QUIT", std_quit },
{ "LIST", std_list },
{ "NLST", std_list },
+ { "MLSD", std_list },
{ 0, 0 }
};