Commit 6049c080 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Add comment about how incompetent I am.

parent 972edcad
......@@ -73,6 +73,10 @@ int
flush_source(struct source *src)
{
int i;
/* This is absolutely horrible -- it makes expire_sources quadratic.
But it's not called very often. */
for(i = 0; i < numroutes; i++) {
if(routes[i].src == src)
return 0;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment