From c33ded254b17ed0b7871ec8ef08ddf447df08952 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 29 Jun 2013 22:58:37 +0100 Subject: [PATCH] udpkey.c: Fix typos in commentary. --- udpkey.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/udpkey.c b/udpkey.c index 4d72079..aede953 100644 --- 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) { -- 2.11.0