diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2008-04-18 12:32:12 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2008-04-18 12:32:12 +0000 |
commit | 74ee0ea50ffd59c07ac9844b29c38c621664643f (patch) | |
tree | ebbf94552d8c6acd970914696d764472be6f64dd /usr.bin/ssh/sftp | |
parent | 9490f7792ea055f8deb63b21074eb1e994861753 (diff) |
introduce sftp extension methods statvfs@openssh.com and
fstatvfs@openssh.com that implement statvfs(2)-like operations,
based on a patch from miklos AT szeredi.hu (bz#1399)
also add a "df" command to the sftp client that uses the
statvfs@openssh.com to produce a df(1)-like display of filesystem
space and inode utilisation
ok markus@
Diffstat (limited to 'usr.bin/ssh/sftp')
-rw-r--r-- | usr.bin/ssh/sftp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sftp/Makefile b/usr.bin/ssh/sftp/Makefile index 98e17748c1d..08da805467d 100644 --- a/usr.bin/ssh/sftp/Makefile +++ b/usr.bin/ssh/sftp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.10 2006/04/18 10:44:28 dtucker Exp $ +# $OpenBSD: Makefile,v 1.11 2008/04/18 12:32:11 djm Exp $ .PATH: ${.CURDIR}/.. @@ -14,4 +14,4 @@ SRCS= sftp.c sftp-client.c sftp-common.c sftp-glob.c .include <bsd.prog.mk> -LDADD+= -ledit -ltermcap +LDADD+= -ledit -ltermcap -lutil |