diff options
author | Ray Lai <ray@cvs.openbsd.org> | 2010-07-23 21:46:06 +0000 |
---|---|---|
committer | Ray Lai <ray@cvs.openbsd.org> | 2010-07-23 21:46:06 +0000 |
commit | e8df46ebc95c21d2fa189e326823cccada62e7cc (patch) | |
tree | 48c7fb4aadada0cc104af21571a8b98cda5a6187 /usr.bin/cvs/client.c | |
parent | 4f1a72500c438538bed55293f2e724efc28584f0 (diff) |
Reduce variable/function name and whitespace differences between
cvs/rcs.
OK xsa zinovik
Diffstat (limited to 'usr.bin/cvs/client.c')
-rw-r--r-- | usr.bin/cvs/client.c | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/cvs/client.c b/usr.bin/cvs/client.c index a9f656f0268..b41f101f6cc 100644 --- a/usr.bin/cvs/client.c +++ b/usr.bin/cvs/client.c @@ -1,4 +1,4 @@ -/* $OpenBSD: client.c,v 1.121 2009/04/04 11:29:57 joris Exp $ */ +/* $OpenBSD: client.c,v 1.122 2010/07/23 21:46:05 ray Exp $ */ /* * Copyright (c) 2006 Joris Vink <joris@openbsd.org> * @@ -135,20 +135,20 @@ client_get_supported_responses(void) int i, first; first = 0; - bp = cvs_buf_alloc(512); + bp = buf_alloc(512); for (i = 0; cvs_responses[i].supported != -1; i++) { if (cvs_responses[i].hdlr == NULL) continue; if (first != 0) - cvs_buf_putc(bp, ' '); + buf_putc(bp, ' '); else first++; - cvs_buf_puts(bp, cvs_responses[i].name); + buf_puts(bp, cvs_responses[i].name); } - cvs_buf_putc(bp, '\0'); - d = cvs_buf_release(bp); + buf_putc(bp, '\0'); + d = buf_release(bp); return (d); } |