udpkey.c: Fix embarrassing typo.
[udpkey] / udpkey.c
index 4d72079..ca337cc 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 */
 
@@ -980,8 +980,8 @@ 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
+       /* See whether this corresponds to any of our servers.  Don't just
+        * check the active servers, since this may be late a reply caused by
         * retransmissions or similar.
         */
        for (q = qq; q; q = q->next) {
@@ -1105,7 +1105,7 @@ static int doquery(int argc, char *argv[])
 static void usage(FILE *fp)
 {
   pquis(fp, "Usage: \n\
-       $ [-OPTS] LABEL {ADDR:PORT | FILE} ...\n\
+       $ [-OPTS] LABEL {ADDR:PORT[=TAG][#HASH];... | FILE} ...\n\
        $ [-OPTS] -l [ADDR:]PORT\n\
 ");
 }