diff options
Diffstat (limited to 'FICS/playerdb.c')
-rw-r--r-- | FICS/playerdb.c | 27 |
1 files changed, 11 insertions, 16 deletions
diff --git a/FICS/playerdb.c b/FICS/playerdb.c index cda4e1a..e142a83 100644 --- a/FICS/playerdb.c +++ b/FICS/playerdb.c @@ -1909,26 +1909,21 @@ player_remove_request(int p, int p1, int type) { int to = 0, from = 0; - while (to != -1) { - if ((to = player_find_pendto(p, p1, type)) != -1) { - for (; to < parray[p].num_to - 1; to++) { - parray[p].p_to_list[to] = - parray[p].p_to_list[to + 1]; - } - - parray[p].num_to = (parray[p].num_to - 1); + while ((to = player_find_pendto(p, p1, type)) != -1) { + for (; to < parray[p].num_to - 1; to++) { + parray[p].p_to_list[to] = parray[p].p_to_list[to + 1]; } - } - while (from != -1) { - if ((from = player_find_pendfrom(p1, p, type)) != -1) { - for (; from < parray[p1].num_from - 1; from++) { - parray[p1].p_from_list[from] = - parray[p1].p_from_list[from + 1]; - } + parray[p].num_to = (parray[p].num_to - 1); + } - parray[p1].num_from = (parray[p1].num_from - 1); + while ((from = player_find_pendfrom(p1, p, type)) != -1) { + for (; from < parray[p1].num_from - 1; from++) { + parray[p1].p_from_list[from] = + parray[p1].p_from_list[from + 1]; } + + parray[p1].num_from = (parray[p1].num_from - 1); } if ((type == PEND_ALL || type == PEND_MATCH) && parray[p].partner >= 0) |