summaryrefslogtreecommitdiff
path: root/usr.bin/rcs/rcsdiff.c
diff options
context:
space:
mode:
authorRay Lai <ray@cvs.openbsd.org>2007-07-03 00:56:24 +0000
committerRay Lai <ray@cvs.openbsd.org>2007-07-03 00:56:24 +0000
commit843239cc329250ab93d1ab56ed8cefecb214dea8 (patch)
treecd9003da299e83619ac45f05948b9a28f50288fd /usr.bin/rcs/rcsdiff.c
parentf1d4e8585a71af6fc6918494b948182c0f423582 (diff)
Rename rcs_diffreg() to diffreg().
OK joris@
Diffstat (limited to 'usr.bin/rcs/rcsdiff.c')
-rw-r--r--usr.bin/rcs/rcsdiff.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/rcs/rcsdiff.c b/usr.bin/rcs/rcsdiff.c
index 403b9a3fe2d..78239f8f336 100644
--- a/usr.bin/rcs/rcsdiff.c
+++ b/usr.bin/rcs/rcsdiff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: rcsdiff.c,v 1.74 2007/06/30 08:23:49 xsa Exp $ */
+/* $OpenBSD: rcsdiff.c,v 1.75 2007/07/03 00:56:23 ray Exp $ */
/*
* Copyright (c) 2005 Joris Vink <joris@openbsd.org>
* All rights reserved.
@@ -349,7 +349,7 @@ rcsdiff_file(RCSFILE *file, RCSNUM *rev, const char *filename, int dflags)
if (utimes(path2, (const struct timeval *)&tv2) < 0)
warn("utimes");
- ret = rcs_diffreg(path1, path2, NULL, dflags);
+ ret = diffreg(path1, path2, NULL, dflags);
out:
if (fd != -1)
@@ -430,7 +430,7 @@ rcsdiff_rev(RCSFILE *file, RCSNUM *rev1, RCSNUM *rev2, int dflags)
if (utimes(path2, (const struct timeval *)&tv2) < 0)
warn("utimes");
- ret = rcs_diffreg(path1, path2, NULL, dflags);
+ ret = diffreg(path1, path2, NULL, dflags);
out:
if (b1 != NULL)