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/co.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/co.c')
-rw-r--r-- | usr.bin/rcs/co.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/co.c b/usr.bin/rcs/co.c index 6012e92494d..5172d1219c1 100644 --- a/usr.bin/rcs/co.c +++ b/usr.bin/rcs/co.c @@ -1,4 +1,4 @@ -/* $OpenBSD: co.c,v 1.81 2006/04/21 14:18:26 xsa Exp $ */ +/* $OpenBSD: co.c,v 1.82 2006/04/21 17:17:29 xsa Exp $ */ /* * Copyright (c) 2005 Joris Vink <joris@openbsd.org> * All rights reserved. @@ -152,7 +152,7 @@ checkout_main(int argc, char **argv) fatal("getlogin failed"); for (i = 0; i < argc; i++) { - if (rcs_statfile(argv[i], fpath, sizeof(fpath)) < 0) + if (rcs_statfile(argv[i], fpath, sizeof(fpath), flags) < 0) continue; if (!(flags & QUIET)) |