1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-23 00:43:28 +00:00
freebsd-ports/ftp/jftpgw/files/patch-std_cmds.h
Philip M. Gollucci 715b3b08e3 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>
2009-07-17 04:05:41 +00:00

11 lines
245 B
C

--- ./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 }
};