summaryrefslogtreecommitdiff
path: root/bin/cp
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2003-08-06 21:08:09 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2003-08-06 21:08:09 +0000
commit8f4be4c9fc053e06d8170659c9bde356ada1a655 (patch)
treed116498a9604b21bf16d82850fcf1726939a4f6a /bin/cp
parent9293e104f0b834487ffef8344f12e9dc93c0abd0 (diff)
Remove some double semicolons (hmm, do two semis equal a maxi?).
I've skipped the GNU stuff for now. From Patrick Latifi.
Diffstat (limited to 'bin/cp')
-rw-r--r--bin/cp/utils.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/bin/cp/utils.c b/bin/cp/utils.c
index 2b86dbc6215..ab95cd29fed 100644
--- a/bin/cp/utils.c
+++ b/bin/cp/utils.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: utils.c,v 1.23 2003/07/29 00:24:14 deraadt Exp $ */
+/* $OpenBSD: utils.c,v 1.24 2003/08/06 21:08:05 millert Exp $ */
/* $NetBSD: utils.c,v 1.6 1997/02/26 14:40:51 cgd Exp $ */
/*-
@@ -34,7 +34,7 @@
#if 0
static char sccsid[] = "@(#)utils.c 8.3 (Berkeley) 4/1/94";
#else
-static char rcsid[] = "$OpenBSD: utils.c,v 1.23 2003/07/29 00:24:14 deraadt Exp $";
+static char rcsid[] = "$OpenBSD: utils.c,v 1.24 2003/08/06 21:08:05 millert Exp $";
#endif
#endif /* not lint */
@@ -105,7 +105,7 @@ copy_file(FTSENT *entp, int dne)
if (to_fd == -1) {
warn("%s", to.p_path);
(void)close(from_fd);
- return (1);;
+ return (1);
}
rval = 0;