diff options
author | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-21 17:17:30 +0000 |
---|---|---|
committer | Xavier Santolaria <xsa@cvs.openbsd.org> | 2006-04-21 17:17:30 +0000 |
commit | 983cac9499e023e5b064864b91c92a9c75bc6465 (patch) | |
tree | 8701df726e0d0ce95be0039d4ed47ca10c417824 /usr.bin/rcs/rcsclean.c | |
parent | 3badf17decc7a041cd9abe96ba152aa9b09aca38 (diff) |
move shared functions into rcsutil.[ch]; this makes rcsprog.c cleaner;
"the voices in my head say OK!" joris@.
Diffstat (limited to 'usr.bin/rcs/rcsclean.c')
-rw-r--r-- | usr.bin/rcs/rcsclean.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/rcsclean.c b/usr.bin/rcs/rcsclean.c index 9df700ad56d..16790e8e832 100644 --- a/usr.bin/rcs/rcsclean.c +++ b/usr.bin/rcs/rcsclean.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rcsclean.c,v 1.38 2006/04/21 14:18:26 xsa Exp $ */ +/* $OpenBSD: rcsclean.c,v 1.39 2006/04/21 17:17:29 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -138,7 +138,7 @@ rcsclean_file(char *fname, const char *rev_str) file = NULL; rev = NULL; - if (rcs_statfile(fname, fpath, sizeof(fpath)) < 0) + if (rcs_statfile(fname, fpath, sizeof(fpath), flags) < 0) goto out; if ((file = rcs_open(fpath, RCS_RDWR)) == NULL) |