diff options
author | 2006-07-07 17:37:17 +0000 | |
---|---|---|
committer | 2006-07-07 17:37:17 +0000 | |
commit | 9fac60a5edb4d91f7a39943c017b4040df584793 (patch) | |
tree | be4776b06f03786b5115a3587e917b0ab575ad09 /usr.bin/cvs/diff_internals.c | |
parent | Regen (diff) | |
download | wireguard-openbsd-9fac60a5edb4d91f7a39943c017b4040df584793.tar.xz wireguard-openbsd-9fac60a5edb4d91f7a39943c017b4040df584793.zip |
first part of opencvs remote, fairly useable on existing trees
although i advise against using it on real development trees for now.
only a few commands work right so far:
- commit
- diff
- status
- log
- update (partially working)
if you feel like testing remote and run into bugs feel free to
contact me, and please include a full trace (-t).
Diffstat (limited to 'usr.bin/cvs/diff_internals.c')
-rw-r--r-- | usr.bin/cvs/diff_internals.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/cvs/diff_internals.c b/usr.bin/cvs/diff_internals.c index 5a37ec4c86d..4c453d9ebda 100644 --- a/usr.bin/cvs/diff_internals.c +++ b/usr.bin/cvs/diff_internals.c @@ -1,4 +1,4 @@ -/* $OpenBSD: diff_internals.c,v 1.2 2006/05/31 22:24:12 joris Exp $ */ +/* $OpenBSD: diff_internals.c,v 1.3 2006/07/07 17:37:17 joris Exp $ */ /* * Copyright (C) Caldera International Inc. 2001-2002. * All rights reserved. @@ -946,7 +946,7 @@ proceed: diff_output("\t%s", buf); } - printf("\n"); + diff_output("\n"); t = localtime(&stb2.st_mtime); (void)strftime(buf, sizeof(buf), @@ -961,7 +961,7 @@ proceed: diff_output("\t%s", buf); } - printf("\n"); + diff_output("\n"); anychange = 1; } else if (a > context_vec_ptr->b + (2 * context) + 1 && c > context_vec_ptr->d + (2 * context) + 1) { |