ViewVC Help
View File | Revision Log | Show Annotations | View Changeset | Root Listing
root/svn/ircd-hybrid/trunk/src/conf.c
(Generate patch)

Comparing ircd-hybrid/trunk/src/conf.c (file contents):
Revision 2150 by michael, Fri May 31 18:39:43 2013 UTC vs.
Revision 2174 by michael, Mon Jun 3 19:45:38 2013 UTC

# Line 65 | Line 65 | dlink_list oconf_items   = { NULL, NULL,
65   dlink_list uconf_items   = { NULL, NULL, 0 };
66   dlink_list xconf_items   = { NULL, NULL, 0 };
67   dlink_list nresv_items   = { NULL, NULL, 0 };
68 < dlink_list temporary_resv = { NULL, NULL, 0 };
68 > dlink_list cresv_items = { NULL, NULL, 0 };
69  
70   extern unsigned int lineno;
71   extern char linebuf[];
# Line 809 | Line 809 | map_to_list(enum maskitem_type type)
809      return(&nresv_items);
810      break;
811    case CONF_CRESV:
812 <    return(&resv_channel_list);
812 >    return(&cresv_items);
813    case CONF_OPER:
814      return(&oconf_items);
815      break;
# Line 1327 | Line 1327 | cleanup_tklines(void *notused)
1327    hostmask_expire_temporary();
1328    expire_tklines(&xconf_items);
1329    expire_tklines(&nresv_items);
1330 <  expire_tklines(&resv_channel_list);
1330 >  expire_tklines(&cresv_items);
1331   }
1332  
1333   /* expire_tklines()
# Line 1542 | Line 1542 | clear_out_old_conf(void)
1542    dlink_list *free_items [] = {
1543      &server_items,   &oconf_items,
1544       &uconf_items,   &xconf_items,
1545 <     &nresv_items, &cluster_items,  &service_items, &resv_channel_list, NULL
1545 >     &nresv_items, &cluster_items,  &service_items, &cresv_items, NULL
1546    };
1547  
1548    dlink_list ** iterator = free_items; /* C is dumb */

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines