diff options
author | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-12 17:19:52 +0000 |
---|---|---|
committer | Ted Unangst <tedu@cvs.openbsd.org> | 2015-12-12 17:19:52 +0000 |
commit | 9739bbb704990ac54e34c85c06987401f639bb44 (patch) | |
tree | e81d16101bba213a975928bb62e2d5d7c365976b | |
parent | 63f2a531200dc4803a1caf38adfcfa143d0601b9 (diff) |
correct comment
-rw-r--r-- | usr.sbin/rebound/rebound.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/rebound/rebound.c b/usr.sbin/rebound/rebound.c index 848ffaee5e1..4d88a592874 100644 --- a/usr.sbin/rebound/rebound.c +++ b/usr.sbin/rebound/rebound.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rebound.c,v 1.57 2015/12/11 13:47:08 tedu Exp $ */ +/* $OpenBSD: rebound.c,v 1.58 2015/12/12 17:19:51 tedu Exp $ */ /* * Copyright (c) 2015 Ted Unangst <tedu@openbsd.org> * @@ -66,7 +66,6 @@ struct dnsrr { * until then, the request owns the entry and must free it. * after it's on the list, the request must not free it. */ - struct dnscache { TAILQ_ENTRY(dnscache) fifo; RB_ENTRY(dnscache) cachenode; @@ -85,7 +84,7 @@ static int cachemax; static uint64_t cachehits; /* - * requests are kept on both fifo and tree, but only after socket s is set. + * requests are kept on a fifo list, but only after socket s is set. */ struct request { int s; |