diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-12-21 02:28:48 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2006-12-21 02:28:48 +0000 |
commit | 0341bd4e4d803a69c507fcae2e9e2e04c411de43 (patch) | |
tree | 15f77acd721dcd7226671c21d9c32b70ba13a35e /lib | |
parent | b97d3a247d2849230c1740f0b8cde49f227e2540 (diff) |
'tranfer' -> 'transfer' in comments.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/libevent/buffer.c | 4 |
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); |