diff options
author | 2006-02-24 14:34:56 +0000 | |
---|---|---|
committer | 2006-02-24 14:34:56 +0000 | |
commit | 74a473ab07697893dac3db3b32ca42fac1eaa03d (patch) | |
tree | 56122b7ba811e51b9f1382336b8e871d8f15e1c3 | |
parent | -T has no effect. It's only there for compatibility. (diff) | |
download | wireguard-openbsd-74a473ab07697893dac3db3b32ca42fac1eaa03d.tar.xz wireguard-openbsd-74a473ab07697893dac3db3b32ca42fac1eaa03d.zip |
remove extra printf;
-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); |