Browse Source

[1924] (minor) Comment tweaks

Michal 'vorner' Vaner 12 years ago
parent
commit
73709cdf80
1 changed files with 3 additions and 3 deletions
  1. 3 3
      src/bin/msgq/msgq.py.in

+ 3 - 3
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)