diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-02-24 14:34:57 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-02-24 14:34:57 +0000 |
commit | 1e789f20bc58cc8a1cb1b4057b045135931b964a (patch) | |
tree | 1cabbe9ff35b03934d39a5ecbf8c366da411266f /usr.bin/rcs | |
parent | 6b4d9741a217167ff8295b21097899c9f43b57e5 (diff) |
remove extra printf;
Diffstat (limited to 'usr.bin/rcs')
-rw-r--r-- | usr.bin/rcs/co.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index f877e816b80..dcd957f971f 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.53 2006/02/14 13:28:38 xsa Exp $ */ +/* $OpenBSD: co.c,v 1.54 2006/02/24 14:34:56 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -372,9 +372,6 @@ checkout_rev(RCSFILE *file, RCSNUM *frev, const char *dst, int flags, if (utimes(dst, (const struct timeval *)&tv) < 0) cvs_log(LP_ERRNO, "error setting utimes"); } - - if ((verbose == 1) && !(flags & NEWFILE)) - printf("done\n"); } return (0); |