diff options
author | pgollucci <pgollucci@FreeBSD.org> | 2009-07-17 12:05:41 +0800 |
---|---|---|
committer | pgollucci <pgollucci@FreeBSD.org> | 2009-07-17 12:05:41 +0800 |
commit | 79fd319fc7501afb244c8d9712f028d68bab969e (patch) | |
tree | e7e4eaa6a6cb0cf5394813e2ad672f289a4c8c1f /ftp | |
parent | cf674b5f84f875d34783ca8d5d20e539216b860f (diff) | |
download | freebsd-ports-graphics-79fd319fc7501afb244c8d9712f028d68bab969e.tar.gz freebsd-ports-graphics-79fd319fc7501afb244c8d9712f028d68bab969e.tar.zst freebsd-ports-graphics-79fd319fc7501afb244c8d9712f028d68bab969e.zip |
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>
Diffstat (limited to 'ftp')
-rw-r--r-- | ftp/jftpgw/Makefile | 2 | ||||
-rw-r--r-- | ftp/jftpgw/files/patch-std_cmds.h | 10 |
2 files changed, 11 insertions, 1 deletions
diff --git a/ftp/jftpgw/Makefile b/ftp/jftpgw/Makefile index fc7fab86baa..1333665d5b3 100644 --- a/ftp/jftpgw/Makefile +++ b/ftp/jftpgw/Makefile @@ -7,7 +7,7 @@ PORTNAME= jftpgw PORTVERSION= 0.13.5 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= ftp MASTER_SITES= http://www.mcknight.de/jftpgw/ diff --git a/ftp/jftpgw/files/patch-std_cmds.h b/ftp/jftpgw/files/patch-std_cmds.h new file mode 100644 index 00000000000..20af29b6753 --- /dev/null +++ b/ftp/jftpgw/files/patch-std_cmds.h @@ -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 } + }; + |