diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-14 01:11:08 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2006-04-14 01:11:08 +0000 |
commit | f602d3ffece442efb97a8e704dcc645d7294cbcb (patch) | |
tree | a5875e978d68a3bfe6dd3385b164d723f3868856 /usr.bin/rcs/rcsclean.c | |
parent | b5a6acaff30de7f91514e2b33a11fe886a22d288 (diff) |
excessive addition to brackets is a mental disease. you will go
blind, too. seek help. no binary change, ok joris
Diffstat (limited to 'usr.bin/rcs/rcsclean.c')
-rw-r--r-- | usr.bin/rcs/rcsclean.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/rcsclean.c b/usr.bin/rcs/rcsclean.c index b54de6bc60b..2326d61dec3 100644 --- a/usr.bin/rcs/rcsclean.c +++ b/usr.bin/rcs/rcsclean.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsclean.c,v 1.32 2006/04/13 16:23:31 ray Exp $ */ +/* $OpenBSD: rcsclean.c,v 1.33 2006/04/14 01:11:07 deraadt Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -187,8 +187,8 @@ rcsclean_file(char *fname, const char *rev_str) xfree(c2); if (match == 1) { - if ((uflag == 1) && (!TAILQ_EMPTY(&(file->rf_locks)))) { - if ((verbose == 1) && (nflag == 0)) { + if (uflag == 1 && !TAILQ_EMPTY(&(file->rf_locks))) { + if (verbose == 1 && nflag == 0) { printf("rcs -u%s %s\n", rcsnum_tostr(rev, numb, sizeof(numb)), fpath); |