[From nobody Tue Nov 13 17:39:43 2007 From: Tomash Brechko <tomash.brechko@gmail.com> Date: Tue, 13 Nov 2007 20:44:27 +0300 Subject: [PATCH] Fix bogus whitespace. --- trunk/server/memcached.c | 14 +++++++------- 1 files changed, 7 insertions(+), 7 deletions(-) diff --git a/trunk/server/memcached.c b/trunk/server/memcached.c index 73795ed..9e7c6a5 100644 --- a/trunk/server/memcached.c +++ b/trunk/server/memcached.c @@ -1229,13 +1229,13 @@ static inline void process_get_command(conn *c, token_t *tokens, size_t ntokens, if (settings.verbose > 1) fprintf(stderr, ">%d END\n", c->sfd); -    /* -      If the loop was terminated because of out-of-memory, it is not -      reliable to add END\r\n to the buffer, because it might not end -      in \r\n.  So we send SERVER_ERROR instead. -    */ -    if (key_token->value != NULL || add_iov(c, "END\r\n", 5) != 0 -        || (c->udp && build_udp_headers(c) != 0)) { + /* + If the loop was terminated because of out-of-memory, it is not + reliable to add END\r\n to the buffer, because it might not end + in \r\n.  So we send SERVER_ERROR instead. + */ + if (key_token->value != NULL || add_iov(c, "END\r\n", 5) != 0 + || (c->udp && build_udp_headers(c) != 0)) { out_string(c, "SERVER_ERROR out of memory"); } else { -- 1.5.3.5.652.gf192c ]