Re: diff: simplify globbing in ftpd(8)

2020-01-14 Thread Jan Klemkow
On Mon, Jan 13, 2020 at 10:30:11AM -0700, Todd C. Miller wrote: > On Mon, 13 Jan 2020 13:45:55 +0100, Jan Klemkow wrote: > > > This diff simplifies globbing for the ftpd(8) ls and stat command. And > > it avoids to glob for the parameters "-lgA". > > > > Due, we just pass a single string to the

Re: diff: simplify globbing in ftpd(8)

2020-01-13 Thread Jan Klemkow
On Mon, Jan 13, 2020 at 10:30:11AM -0700, Todd C. Miller wrote: > On Mon, 13 Jan 2020 13:45:55 +0100, Jan Klemkow wrote: > > This diff simplifies globbing for the ftpd(8) ls and stat command. And > > it avoids to glob for the parameters "-lgA". > > > > Due, we just pass a single string to the

Re: diff: simplify globbing in ftpd(8)

2020-01-13 Thread Todd C . Miller
On Mon, 13 Jan 2020 13:45:55 +0100, Jan Klemkow wrote: > This diff simplifies globbing for the ftpd(8) ls and stat command. And > it avoids to glob for the parameters "-lgA". > > Due, we just pass a single string to the ftpd_ls() function, we don't > need to provide infrastructure for a dynamic

diff: simplify globbing in ftpd(8)

2020-01-13 Thread Jan Klemkow
Hi, This diff simplifies globbing for the ftpd(8) ls and stat command. And it avoids to glob for the parameters "-lgA". Due, we just pass a single string to the ftpd_ls() function, we don't need to provide infrastructure for a dynamic list of arguments. Tested it manually and by regression