summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiels Provos <provos@gmail.com>2007-08-23 15:37:18 +0000
committerNiels Provos <provos@gmail.com>2007-08-23 15:37:18 +0000
commitb5e32cfb200b8f996cabb6930cf453e29ff52336 (patch)
tree85d0b6a64cf7bfc7114857103a3692a39f525bea
parent2ed40d300efe3131016f27d5e8724e87a155d618 (diff)
downloadlibevent-b5e32cfb200b8f996cabb6930cf453e29ff52336.tar.gz
from trunk: fix typo in comments
svn:r402
-rw-r--r--buffer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/buffer.c b/buffer.c
index 0a57dda3..0327eb54 100644
--- a/buffer.c
+++ b/buffer.c
@@ -107,7 +107,7 @@ evbuffer_add_buffer(struct evbuffer *outbuf, struct evbuffer *inbuf)
/*
* Optimization comes with a price; we need to notify the
* buffer if necessary of the changes. oldoff is the amount
- * of data that we tranfered from inbuf to outbuf
+ * of data that we transfered from inbuf to outbuf
*/
if (inbuf->off != oldoff && inbuf->cb != NULL)
(*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);