From b21be844711ff285ba24cf70bfb2c7238f60c1cc Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Tue, 27 Jan 2004 21:20:11 +1100 Subject: - mouring@cvs.openbsd.org 2004/01/23 17:57:48 [sftp-int.c] Fix issue pointed out with ls not handling large directories with embeded paths correctly. OK damien@ --- sftp-int.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'sftp-int.c') diff --git a/sftp-int.c b/sftp-int.c index a9423fe69..3ee57515d 100644 --- a/sftp-int.c +++ b/sftp-int.c @@ -25,7 +25,7 @@ /* XXX: recursive operations */ #include "includes.h" -RCSID("$OpenBSD: sftp-int.c,v 1.66 2004/01/13 09:25:05 djm Exp $"); +RCSID("$OpenBSD: sftp-int.c,v 1.67 2004/01/23 17:57:48 mouring Exp $"); #include "buffer.h" #include "xmalloc.h" @@ -595,17 +595,24 @@ do_ls_dir(struct sftp_conn *conn, char *path, char *strip_path, int lflag) if (!(lflag & SHORT_VIEW)) { int m = 0, width = 80; struct winsize ws; + char *tmp; /* Count entries for sort and find longest filename */ for (n = 0; d[n] != NULL; n++) m = MAX(m, strlen(d[n]->filename)); + /* Add any subpath that also needs to be counted */ + tmp = path_strip(path, strip_path); + m += strlen(tmp); + xfree(tmp); + if (ioctl(fileno(stdin), TIOCGWINSZ, &ws) != -1) width = ws.ws_col; columns = width / (m + 2); columns = MAX(columns, 1); colspace = width / columns; + colspace = MIN(colspace, width); } qsort(d, n, sizeof(*d), sdirent_comp); -- cgit v1.2.3