# | Line 114 | Line 114 | void command_timer() | |
---|---|---|
114 | ||
115 | LIST_FOREACH_SAFE(node, next, COMMANDS->head) | |
116 | { | |
117 | < | cs = (struct Command *) node->data; |
117 | > | cs = node->data; |
118 | if((present - cs->added) > COMMANDTIMEOUT) | |
119 | { | |
120 | command_free(cs); | |
# | Line 307 | Line 307 | void command_userhost(char *reply) | |
307 | /* Find any queued commands that match this user */ | |
308 | LIST_FOREACH_SAFE(node, next, COMMANDS->head) | |
309 | { | |
310 | < | cs = (struct Command *) node->data; |
310 | > | cs = node->data; |
311 | ||
312 | if(strcmp(cs->irc_nick, reply) == 0) | |
313 | { |
– | Removed lines |
+ | Added lines |
< | Changed lines (old) |
> | Changed lines (new) |