From 58d23f425e92978fd7fc0739ae57af131893d379 Mon Sep 17 00:00:00 2001 From: Konstantin Osipov <kostja@tarantool.org> Date: Mon, 11 Feb 2013 18:01:49 +0400 Subject: [PATCH] Minor change (drop a dead constant, fix a typo). --- src/iproto.m | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/iproto.m b/src/iproto.m index 03cd9373b6..6297ba85d1 100644 --- a/src/iproto.m +++ b/src/iproto.m @@ -209,7 +209,6 @@ struct iproto_queue enum { IPROTO_REQUEST_QUEUE_SIZE = 2048, - IPROTO_CONNECT_QUEUE_SIZE = 256 }; struct iproto_session; @@ -533,7 +532,7 @@ iproto_session_input_iobuf(struct iproto_session *session) if (ibuf_unused(&old->in) >= to_read) return old; - /** All requests are procssed, reuse the buffer. */ + /** All requests are processed, reuse the buffer. */ if (ibuf_size(&old->in) == session->parse_size) { ibuf_reserve(&old->in, to_read); return old; -- GitLab