diff options
author | Werner Koch <[email protected]> | 2006-07-26 11:25:36 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2006-07-26 11:25:36 +0000 |
commit | ccd5fc47589e63acc123847c41ae65bcd9bf445f (patch) | |
tree | e395f0558c2f32f1ac738bbf5876680346efcc86 /include/iobuf.h | |
parent | * curl-shim.c (curl_easy_perform): Minor cleanup of proxy code. (diff) | |
download | gnupg-ccd5fc47589e63acc123847c41ae65bcd9bf445f.tar.gz gnupg-ccd5fc47589e63acc123847c41ae65bcd9bf445f.zip |
Fixed memory allocation bug and typos.
Diffstat (limited to 'include/iobuf.h')
-rw-r--r-- | include/iobuf.h | 6 |
1 files changed, 3 insertions, 3 deletions
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 )? \ |