diff options
author | mouring <mouring@cvs.openbsd.org> | 2001-05-03 23:09:58 +0000 |
---|---|---|
committer | mouring <mouring@cvs.openbsd.org> | 2001-05-03 23:09:58 +0000 |
commit | ace17593b1a10148497e14b189bf4c5980c4cad4 (patch) | |
tree | d074d45eaf901043123632cd48c363e6cf51cec0 /usr.bin/ssh/scp/Makefile | |
parent | 8b1c9898e9cf472e1cec79a0adbe50369e4ae714 (diff) |
Move colon() and cleanhost() to misc.c where I should I have put it in
the first place
Diffstat (limited to 'usr.bin/ssh/scp/Makefile')
-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 454682a36b7..c8959bbf6d2 100644 --- a/usr.bin/ssh/scp/Makefile +++ b/usr.bin/ssh/scp/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.12 2001/04/16 02:31:48 mouring Exp $ +# $OpenBSD: Makefile,v 1.13 2001/05/03 23:09:55 mouring Exp $ .PATH: ${.CURDIR}/.. @@ -10,6 +10,6 @@ BINMODE?=555 BINDIR= /usr/bin MAN= scp.1 -SRCS= scp.c scp-common.c +SRCS= scp.c misc.c .include <bsd.prog.mk> |