summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/rcs.c
diff options
context:
space:
mode:
authorJoris Vink <joris@cvs.openbsd.org>2009-02-15 13:40:34 +0000
committerJoris Vink <joris@cvs.openbsd.org>2009-02-15 13:40:34 +0000
commit143eb6aa41b932670c7118cdab86ac9025f5c5c0 (patch)
treea15bb3c653c80286a669db0f8cec6ac0104ea99f /usr.bin/rcs/rcs.c
parent29f9312a27f071520cae311de19714be474d6201 (diff)
add our temporary RCS file to our temp_files worklist in case
for some reason we get interrupted before calling rename(). we hate leaving behind temporary files.
Diffstat (limited to 'usr.bin/rcs/rcs.c')
-rw-r--r--usr.bin/rcs/rcs.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/rcs/rcs.c b/usr.bin/rcs/rcs.c
index ca97a99f81d..9b5864ffeb3 100644
--- a/usr.bin/rcs/rcs.c
+++ b/usr.bin/rcs/rcs.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcs.c,v 1.51 2008/11/09 08:51:43 tobias Exp $ */
+/* $OpenBSD: rcs.c,v 1.52 2009/02/15 13:40:33 joris Exp $ */
/*
* Copyright (c) 2004 Jean-Francois Brousseau <jfb@openbsd.org>
* All rights reserved.
@@ -404,6 +404,8 @@ rcs_write(RCSFILE *rfp)
err(1, "%s", fn);
}
+ rcs_worklist_add(fn, &rcs_temp_files);
+
if (rfp->rf_head != NULL)
rcsnum_tostr(rfp->rf_head, numbuf, sizeof(numbuf));
else