From: Marko Kreen Date: Thu, 16 Aug 2007 07:57:00 +0000 (+0000) Subject: fix comments X-Git-Tag: pgbouncer_1_1~42 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8e35a8fa5f8e73bb9c84897e4ba3ec9f10fc4d14;p=pgbouncer fix comments --- diff --git a/src/proto.c b/src/proto.c index 2ec210a..b7c7a61 100644 --- a/src/proto.c +++ b/src/proto.c @@ -76,11 +76,11 @@ bool get_header(MBuf *data, PktHdr *pkt) if (len < got || len >= 0x80000000) return false; - /* report pkt info */ + /* store pkt info */ pkt->type = type; pkt->len = len; - /* fill apkt with only data for this pkt */ + /* fill pkt with only data for this packet */ if (len > mbuf_avail(data)) avail = mbuf_avail(data); else