diff options
Diffstat (limited to 'src/checkFront.c')
| -rw-r--r-- | src/checkFront.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/checkFront.c b/src/checkFront.c index 7baa4f2..f6164f3 100644 --- a/src/checkFront.c +++ b/src/checkFront.c @@ -63,17 +63,17 @@ void eventMsgInCheckFront(client_t *client) currentTime = getMyTime(); - for( i = 0 ; i < client->listCheck->count ; i++ ) + for( i = 0 ; i < client->listSendMsg->count ; i++ ) { checkfront_t *this; - this = (checkfront_t *)client->listCheck->list[i]; + this = (checkfront_t *)client->listSendMsg->list[i]; switch( this->type ) { case CHECK_FORNT_TYPE_SIMPLE : sendClient(client, this->msg); - delListItem(client->listCheck, i, destroyCheck); + delListItem(client->listSendMsg, i, destroyCheck); i--; break; @@ -92,7 +92,7 @@ void eventMsgInCheckFront(client_t *client) delID(this->id); } - delListItem(client->listCheck, i, destroyCheck); + delListItem(client->listSendMsg, i, destroyCheck); i--; } break; |