ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/hopm/trunk/src/opercmd.c
(Generate patch)

Comparing hopm/trunk/src/opercmd.c (file contents):
Revision 5090 by michael, Tue Dec 23 18:35:23 2014 UTC vs.
Revision 5091 by michael, Tue Dec 23 19:59:18 2014 UTC

# 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        {

Diff Legend

Removed lines
+ Added lines
< Changed lines (old)
> Changed lines (new)