diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-03-24 15:57:30 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-03-24 15:57:30 +0000 |
commit | af89985e0bf955a7b7b3aac3e93182ae5a737f6f (patch) | |
tree | eb9663d05a78b6f56c3cbc07ced483568aa91e45 /usr.bin | |
parent | 6b5b9248ef656dea20d1dbde8184de09a9230919 (diff) |
change rcsclean_file() return type to void as it does not need
to be checked. OK ray@.
Diffstat (limited to 'usr.bin')
-rw-r--r-- | usr.bin/rcs/rcsclean.c | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/usr.bin/rcs/rcsclean.c b/usr.bin/rcs/rcsclean.c index 4905e167482..f3e782049d8 100644 --- a/usr.bin/rcs/rcsclean.c +++ b/usr.bin/rcs/rcsclean.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsclean.c,v 1.27 2006/03/24 05:14:48 ray Exp $ */ +/* $OpenBSD: rcsclean.c,v 1.28 2006/03/24 15:57:29 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -29,7 +29,8 @@ #include "rcsprog.h" #include "diff.h" -static int rcsclean_file(char *, RCSNUM *); +static void rcsclean_file(char *, RCSNUM *); + static int nflag = 0; static int kflag = RCS_KWEXP_ERR; static int uflag = 0; @@ -124,7 +125,7 @@ rcsclean_usage(void) " [-rrev] [-u[rev]] [-xsuffixes] [-ztz] [file] ...\n"); } -static int +static void rcsclean_file(char *fname, RCSNUM *rev) { int match; @@ -139,13 +140,13 @@ rcsclean_file(char *fname, RCSNUM *rev) match = 1; if (stat(fname, &st) == -1) - return (-1); + return; if (rcs_statfile(fname, fpath, sizeof(fpath)) < 0) - return (-1); + return; if ((file = rcs_open(fpath, RCS_RDWR)) == NULL) - return (-1); + return; if (flags & PRESERVETIME) rcs_mtime = rcs_get_mtime(file->rf_path); @@ -161,13 +162,13 @@ rcsclean_file(char *fname, RCSNUM *rev) if ((b1 = rcs_getrev(file, frev)) == NULL) { cvs_log(LP_ERR, "failed to get needed revision"); rcs_close(file); - return (-1); + return; } if ((b2 = cvs_buf_load(fname, BUF_AUTOEXT)) == NULL) { cvs_log(LP_ERRNO, "failed to load '%s'", fname); rcs_close(file); - return (-1); + return; } cvs_buf_putc(b1, '\0'); @@ -209,6 +210,4 @@ rcsclean_file(char *fname, RCSNUM *rev) if (flags & PRESERVETIME) rcs_set_mtime(fpath, rcs_mtime); - - return (0); } |