]> granicus.if.org Git - libevent/commitdiff
EVBUFFER_PTR_SET -> EVBUFFER_PTR_ADD
authorjer-gentoo <jer@gentoo.org>
Wed, 21 Jan 2015 10:24:23 +0000 (11:24 +0100)
committerjer-gentoo <jer@gentoo.org>
Wed, 21 Jan 2015 10:24:23 +0000 (11:24 +0100)
Looks like EVBUFFER_PTR_ADD should have been used instead of EVBUFFER_PTR_SET.

include/event2/buffer.h

index 03a18984354a3779ab373dc6243bfeeeeac92b8f..468588b9f141c200c2ab310afd1e448dd643e70f 100644 (file)
@@ -782,7 +782,7 @@ enum evbuffer_ptr_how {
    There are two ways to use this function: you can call
       evbuffer_ptr_set(buf, &pos, N, EVBUFFER_PTR_SET)
    to move 'pos' to a position 'N' bytes after the start of the buffer, or
-      evbuffer_ptr_set(buf, &pos, N, EVBUFFER_PTR_SET)
+      evbuffer_ptr_set(buf, &pos, N, EVBUFFER_PTR_ADD)
    to move 'pos' forward by 'N' bytes.
 
    If evbuffer_ptr is not initialized, this function can only be called