udpkey.c: Fix typos in commentary.
authorMark Wooding <mdw@distorted.org.uk>
Sat, 29 Jun 2013 21:58:37 +0000 (22:58 +0100)
committerMark Wooding <mdw@distorted.org.uk>
Sat, 29 Jun 2013 21:58:37 +0000 (22:58 +0100)
udpkey.c

index 4d72079..aede953 100644 (file)
--- a/udpkey.c
+++ b/udpkey.c
@@ -474,7 +474,7 @@ static void debug_ge(const char *what, group *g, ge *X)
 /* Rate limiting parameters.
  *
  * There's a probabilistic rate-limiting mechanism.  A counter starts at 0.
- * Every time we oricess a request, we increment the counter.  The counter
+ * Every time we process a request, we increment the counter.  The counter
  * drops by RATE_REFILL every second.  If the counter is below RATE_CREDIT
  * then the request is processed; otherwise it is processed with probability
  * 1/(counter - RATE_CREDIT).
@@ -880,7 +880,7 @@ static struct query *qinit_file(const char *tag, const char *file)
   return (q);
 }
 
-/* Reransmission and timeout parameters. */
+/* Retransmission and timeout parameters. */
 #define TO_NEXT(t) (((t) + 2)*4/3)     /* Timeout growth function */
 #define TO_MAX 30                      /* When to give up */
 
@@ -981,7 +981,7 @@ static int doquery(int argc, char *argv[])
        }
 
        /* Wee whether this corresponds to any of our servers.  Don't just
-        * check the active servers, since this may be late replies caused by
+        * check the active servers, since this may be late a reply caused by
         * retransmissions or similar.
         */
        for (q = qq; q; q = q->next) {