[BACK]Return to buf.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / cvs

Diff for /src/usr.bin/cvs/buf.c between version 1.57 and 1.58

version 1.57, 2007/02/02 04:34:49 version 1.58, 2007/02/19 11:40:00
Line 138 
Line 138 
  * of the buffer.  Instead, they are returned and should be freed later using   * of the buffer.  Instead, they are returned and should be freed later using
  * free().   * free().
  */   */
 void *  u_char *
 cvs_buf_release(BUF *b)  cvs_buf_release(BUF *b)
 {  {
         u_char *tmp;          u_char *tmp;
Line 398 
Line 398 
  *   *
  * Peek at the contents of the buffer <b> at offset <off>.   * Peek at the contents of the buffer <b> at offset <off>.
  */   */
 const void *  const u_char *
 cvs_buf_peek(BUF *b, size_t off)  cvs_buf_peek(BUF *b, size_t off)
 {  {
         if (off >= b->cb_len)          if (off >= b->cb_len)

Legend:
Removed from v.1.57  
changed lines
  Added in v.1.58