summaryrefslogtreecommitdiffstats
path: root/usr.bin/rcs/diff.c
diff options
context:
space:
mode:
authorray <ray@openbsd.org>2010-07-23 21:46:04 +0000
committerray <ray@openbsd.org>2010-07-23 21:46:04 +0000
commit7bb3ddb082eb2d269769c325550cc5d14ba24224 (patch)
tree03914d64d15a06f9ae354a7528c7ce2fee436571 /usr.bin/rcs/diff.c
parentDon't initialize acpiec pointer in acpi_softc until registration succeeds (diff)
downloadwireguard-openbsd-7bb3ddb082eb2d269769c325550cc5d14ba24224.tar.xz
wireguard-openbsd-7bb3ddb082eb2d269769c325550cc5d14ba24224.zip
Reduce variable/function name and whitespace differences between
cvs/rcs. OK xsa zinovik
Diffstat (limited to 'usr.bin/rcs/diff.c')
-rw-r--r--usr.bin/rcs/diff.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/rcs/diff.c b/usr.bin/rcs/diff.c
index c3f9f27cb91..087210aaf45 100644
--- a/usr.bin/rcs/diff.c
+++ b/usr.bin/rcs/diff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: diff.c,v 1.30 2010/07/16 17:53:20 ray Exp $ */
+/* $OpenBSD: diff.c,v 1.31 2010/07/23 21:46:05 ray Exp $ */
/*
* Copyright (C) Caldera International Inc. 2001-2002.
* All rights reserved.
@@ -1377,7 +1377,7 @@ diff_output(const char *fmt, ...)
if (i == -1)
err(1, "diff_output");
if (diffbuf != NULL)
- rcs_buf_append(diffbuf, str, strlen(str));
+ buf_append(diffbuf, str, strlen(str));
else
printf("%s", str);
xfree(str);