summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKenneth R Westerback <krw@cvs.openbsd.org>2006-12-21 02:28:48 +0000
committerKenneth R Westerback <krw@cvs.openbsd.org>2006-12-21 02:28:48 +0000
commit0341bd4e4d803a69c507fcae2e9e2e04c411de43 (patch)
tree15f77acd721dcd7226671c21d9c32b70ba13a35e /lib
parentb97d3a247d2849230c1740f0b8cde49f227e2540 (diff)
'tranfer' -> 'transfer' in comments.
Diffstat (limited to 'lib')
-rw-r--r--lib/libevent/buffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libevent/buffer.c b/lib/libevent/buffer.c
index a258b369d68..4a1ac9f7a29 100644
--- a/lib/libevent/buffer.c
+++ b/lib/libevent/buffer.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: buffer.c,v 1.11 2006/11/26 15:25:14 brad Exp $ */
+/* $OpenBSD: buffer.c,v 1.12 2006/12/21 02:28:47 krw Exp $ */
/*
* Copyright (c) 2002, 2003 Niels Provos <provos@citi.umich.edu>
@@ -108,7 +108,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 transferred from inbuf to outbuf
*/
if (inbuf->off != oldoff && inbuf->cb != NULL)
(*inbuf->cb)(inbuf, oldoff, inbuf->off, inbuf->cbarg);