From bd55e3167b7b7f179062a86c6219defe12e5ad47 Mon Sep 17 00:00:00 2001 From: Willy Tarreau Date: Thu, 11 Nov 2010 10:55:09 +0100 Subject: [PATCH] [BUILD] peers: shut a printf format warning (key_size is a size_t) Also fix a few misleading comments. --- src/peers.c | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/src/peers.c b/src/peers.c index 76184079b..19b882412 100644 --- a/src/peers.c +++ b/src/peers.c @@ -1,5 +1,5 @@ /* - * Stick table syncro management. + * Stick table synchro management. * * Copyright 2010 EXCELIANCE, Emeric Brun * @@ -505,7 +505,7 @@ switchstate: getpid(), ps->table->table->id, ps->table->table->type, - ps->table->table->key_size); + (int)ps->table->table->key_size); if (repl >= sizeof(trash)) { si->st0 = PEER_SESSION_END; @@ -1066,7 +1066,8 @@ void peer_session_forceshutdown(struct session * session) /* * this function is called on a read event from a listen socket, corresponding * to an accept. It tries to accept as many connections as possible. - * It returns 0. + * It returns a positive value upon success, 0 if the connection needs to be + * closed and ignored, or a negative value upon critical failure. */ int peer_accept(struct session *s) { @@ -1095,7 +1096,7 @@ int peer_accept(struct session *s) } /* - * Create a new peer session in assingned state (connect will start automatically) + * Create a new peer session in assigned state (connect will start automatically) */ struct session *peer_session_create(struct peer *peer, struct peer_session *ps) {