=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/cvs/buf.c,v retrieving revision 1.57 retrieving revision 1.58 diff -c -r1.57 -r1.58 *** src/usr.bin/cvs/buf.c 2007/02/02 04:34:49 1.57 --- src/usr.bin/cvs/buf.c 2007/02/19 11:40:00 1.58 *************** *** 1,4 **** ! /* $OpenBSD: buf.c,v 1.57 2007/02/02 04:34:49 ray Exp $ */ /* * Copyright (c) 2003 Jean-Francois Brousseau * All rights reserved. --- 1,4 ---- ! /* $OpenBSD: buf.c,v 1.58 2007/02/19 11:40:00 otto Exp $ */ /* * Copyright (c) 2003 Jean-Francois Brousseau * All rights reserved. *************** *** 138,144 **** * of the buffer. Instead, they are returned and should be freed later using * free(). */ ! void * cvs_buf_release(BUF *b) { u_char *tmp; --- 138,144 ---- * of the buffer. Instead, they are returned and should be freed later using * free(). */ ! u_char * cvs_buf_release(BUF *b) { u_char *tmp; *************** *** 398,404 **** * * Peek at the contents of the buffer at offset . */ ! const void * cvs_buf_peek(BUF *b, size_t off) { if (off >= b->cb_len) --- 398,404 ---- * * Peek at the contents of the buffer at offset . */ ! const u_char * cvs_buf_peek(BUF *b, size_t off) { if (off >= b->cb_len)