Skip to content
Snippets Groups Projects
Commit 64c107c6 authored by rswindell's avatar rswindell
Browse files

Fixed simple increment bug in last commit.

parent a286e1bb
No related branches found
No related tags found
No related merge requests found
......@@ -671,7 +671,7 @@ get_distlist(void)
SAFECOPY(server[s]->addr,p);
p=tp+1;
while(*p && *p<=' ') p++; /* desc follows whitepsace */
SAFECOPY(server[s]->desc,++p);
SAFECOPY(server[s]->desc,p);
s++;
break;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment