From ccd5fc47589e63acc123847c41ae65bcd9bf445f Mon Sep 17 00:00:00 2001 From: Werner Koch Date: Wed, 26 Jul 2006 11:25:36 +0000 Subject: Fixed memory allocation bug and typos. --- include/iobuf.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'include/iobuf.h') diff --git a/include/iobuf.h b/include/iobuf.h index b6e5303da..0e3584c18 100644 --- a/include/iobuf.h +++ b/include/iobuf.h @@ -135,10 +135,10 @@ void iobuf_set_partial_block_mode( IOBUF a, size_t len ); int iobuf_translate_file_handle ( int fd, int for_write ); -/* get a byte form the iobuf; must check for eof prior to this function - * this function returns values in the range 0 .. 255 or -1 to indicate EOF +/* Get a byte form the iobuf; must check for eof prior to this function. + * This function returns values in the range 0 .. 255 or -1 to indicate EOF * iobuf_get_noeof() does not return -1 to indicate EOF, but masks the - * returned value to be in the range 0 ..255. + * returned value to be in the range 0..255. */ #define iobuf_get(a) \ ( ((a)->nofast || (a)->d.start >= (a)->d.len )? \ -- cgit v1.2.3