diff options
author | mouring <mouring@cvs.openbsd.org> | 2001-04-16 02:31:53 +0000 |
---|---|---|
committer | mouring <mouring@cvs.openbsd.org> | 2001-04-16 02:31:53 +0000 |
commit | 2dc2b43f3974a910f9df6154a2ac22b194bcc3a0 (patch) | |
tree | c866b7e68d6c2ca87ee43018d54292c364f92721 /usr.bin/ssh/scp | |
parent | 8f075c205d047d44e4fec3ac5048875a291f8070 (diff) |
IPv6 support for sftp (which I bungled in my last patch) which is
borrowed from scp.c. Thanks to Markus@ for pointing it out.
Diffstat (limited to 'usr.bin/ssh/scp')
-rw-r--r-- | usr.bin/ssh/scp/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/scp/Makefile b/usr.bin/ssh/scp/Makefile index 380e933f0f9..454682a36b7 100644 --- a/usr.bin/ssh/scp/Makefile +++ b/usr.bin/ssh/scp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.11 2001/03/03 23:59:35 markus Exp $ +# $OpenBSD: Makefile,v 1.12 2001/04/16 02:31:48 mouring Exp $ .PATH: ${.CURDIR}/.. @@ -10,6 +10,6 @@ BINMODE?=555 BINDIR= /usr/bin MAN= scp.1 -SRCS= scp.c +SRCS= scp.c scp-common.c .include <bsd.prog.mk> |