summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKris Kennaway <kris@FreeBSD.org>1999-07-10 05:46:44 +0000
committerKris Kennaway <kris@FreeBSD.org>1999-07-10 05:46:44 +0000
commit1f2dedd83d9a7cd20848ef8ad0be73aa7afb9f96 (patch)
tree876b90ed4fd674d11f0a9c76196efa88e5dd7c1b
parentad21dff290f60360a590e1ad13f17643e9017091 (diff)
Notes
-rw-r--r--bin/cp/Makefile4
-rw-r--r--bin/cp/cp.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/bin/cp/Makefile b/bin/cp/Makefile
index f4ca4d25c87f..1ea50c99dec0 100644
--- a/bin/cp/Makefile
+++ b/bin/cp/Makefile
@@ -1,8 +1,8 @@
# @(#)Makefile 8.1 (Berkeley) 5/31/93
-# $Id: Makefile,v 1.4 1997/02/22 14:01:32 peter Exp $
+# $Id: Makefile,v 1.5 1998/11/14 23:43:11 wosch Exp $
PROG= cp
SRCS= cp.c utils.c
-CFLAGS+= -DVM_AND_BUFFER_CACHE_SYNCHRONIZED
+CFLAGS+= -W -DVM_AND_BUFFER_CACHE_SYNCHRONIZED
.include <bsd.prog.mk>
diff --git a/bin/cp/cp.c b/bin/cp/cp.c
index e873d4d74c1d..524d2e50c6bf 100644
--- a/bin/cp/cp.c
+++ b/bin/cp/cp.c
@@ -45,7 +45,7 @@ static char const copyright[] =
static char sccsid[] = "@(#)cp.c 8.2 (Berkeley) 4/1/94";
#endif
static const char rcsid[] =
- "$Id: cp.c,v 1.18 1999/04/25 21:13:32 imp Exp $";
+ "$Id: cp.c,v 1.19 1999/05/08 10:19:27 kris Exp $";
#endif /* not lint */
/*
@@ -79,7 +79,7 @@ static const char rcsid[] =
*--(p).p_end = 0; \
}
-PATH_T to = { to.p_path, "" };
+PATH_T to = { to.p_path, "", "" };
uid_t myuid;
int Rflag, iflag, pflag, rflag, fflag;