diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2010-07-23 08:31:20 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2010-07-23 08:31:20 +0000 |
commit | 114cf9476ebb86dcd4bd420266b9055ff9918c2e (patch) | |
tree | 31a73dd5949d81e3f8869aaee2bda7b2c5e02f14 /usr.bin/rcs/buf.c | |
parent | bdce6a57594ade4892765a7f2a617b93b6f688bb (diff) |
Rename a bunch of variables and functions, removing the cvs_/rcs_
prefixes to reduce differences between cvs and rcs files.
"yes!" nicm
Diffstat (limited to 'usr.bin/rcs/buf.c')
-rw-r--r-- | usr.bin/rcs/buf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/buf.c b/usr.bin/rcs/buf.c index 6e8b36c0808..7849f66c1ee 100644 --- a/usr.bin/rcs/buf.c +++ b/usr.bin/rcs/buf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: buf.c,v 1.13 2007/05/29 00:19:10 ray Exp $ */ +/* $OpenBSD: buf.c,v 1.14 2010/07/23 08:31:19 ray Exp $ */ /* * Copyright (c) 2003 Jean-Francois Brousseau <jfb@openbsd.org> * All rights reserved. @@ -374,7 +374,7 @@ rcs_buf_write_stmp(BUF *b, char *template) if ((fd = mkstemp(template)) == -1) err(1, "%s", template); - rcs_worklist_add(template, &rcs_temp_files); + worklist_add(template, &temp_files); if (rcs_buf_write_fd(b, fd) == -1) { (void)unlink(template); |