diff --git a/buffer/buffer_get_new_token_sa.3 b/buffer/buffer_get_new_token_sa.3 index de3e4c9..251a5f1 100644 --- a/buffer/buffer_get_new_token_sa.3 +++ b/buffer/buffer_get_new_token_sa.3 @@ -18,9 +18,9 @@ If reading from the buffer or allocating memory fails, buffer_get_new_token_sa returns -1 and sets \fIerrno\fR appropriately. At that point \fIsa\fR may already contain a partial token. -On success, buffer_get_new_token_sa returns 0. - If you want to read from a non-blocking socket, use buffer_get_token_sa instead. +.SH "RETURN VALUE" +-1 on error (setting errno), 0 on EOF, 1 when successful. .SH "SEE ALSO" buffer_getline_sa(3), buffer_get_token(3), buffer(3) diff --git a/buffer/buffer_get_token_sa.3 b/buffer/buffer_get_token_sa.3 index 32666a0..dc52e4d 100644 --- a/buffer/buffer_get_token_sa.3 +++ b/buffer/buffer_get_token_sa.3 @@ -17,8 +17,8 @@ previous content of \fIsa\fR. That delimiter is also appended to If reading from the buffer or allocating memory fails, buffer_get_token_sa returns -1 and sets \fIerrno\fR appropriately. At that point \fIsa\fR may already contain a partial token. - -On success, buffer_get_token_sa returns 0. +.SH "RETURN VALUE" +-1 on error (setting errno), 0 on EOF, 1 when successful. .SH RATIONALE buffer_get_token_sa appends instead of overwriting so it can be used on non-blocking sockets (these signal error and set \fIerrno\fR to EAGAIN; diff --git a/buffer/buffer_get_token_sa.c b/buffer/buffer_get_token_sa.c index 19ce938..7150ed4 100644 --- a/buffer/buffer_get_token_sa.c +++ b/buffer/buffer_get_token_sa.c @@ -16,7 +16,7 @@ int buffer_get_token_sa(buffer* b,stralloc* sa, stralloc_append(sa,&x); if (byte_chr(charset,setlen,x)