From: Michal 'vorner' Vaner Date: Wed, 6 Feb 2013 15:10:34 +0000 (+0100) Subject: [1924] (minor) Comment tweaks X-Git-Tag: bind10-1.1.0beta1-release~104^2~22^2~6 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=73709cdf8042f63328f41c8f0498ecaf57f11dd4;p=thirdparty%2Fkea.git [1924] (minor) Comment tweaks --- diff --git a/src/bin/msgq/msgq.py.in b/src/bin/msgq/msgq.py.in index 03a2403bd6..dd1272a889 100755 --- a/src/bin/msgq/msgq.py.in +++ b/src/bin/msgq/msgq.py.in @@ -567,7 +567,7 @@ class MsgQ: CC_HEADER_REPLY not in routing: # We have no recipients. But the sender insists on a reply # (and the message isn't a reply itself). We need to send - # an error to satisfy the senders hurger for response, since + # an error to satisfy the senders hunger for response, since # nobody else will do that. # The real errors would be positive, 1 most probably. We use @@ -584,8 +584,8 @@ class MsgQ: header[CC_HEADER_FROM] = "msgq" # Dummy lname not assigned to clients header[CC_HEADER_TO] = routing[CC_HEADER_FROM] # We keep the seq as it is. We don't need to track the message - # and provided the sender always uses a new one, it won't know - # we're cheating, since we won't send it two same either. + # and we will not confuse the sender. The sender would use an unique + # id for each message, so we won't return one twice to it. errmsg = self.preparemsg(header, payload) # Send it back. self.send_prepared_msg(sock, errmsg)