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

Comparing:
ircd-hybrid/src/modules.c (file contents), Revision 31 by knight, Sun Oct 2 20:34:05 2005 UTC vs.
ircd-hybrid-7.2/src/modules.c (file contents), Revision 512 by michael, Sat Mar 4 16:21:54 2006 UTC

# Line 231 | Line 231 | findmodule_byname(const char *name)
231    {
232      modp = ptr->data;
233  
234 <    if (!irccmp(modp->name, name))
234 >    if (strcmp(modp->name, name) == 0)
235        return ptr;
236    }
237  
# Line 572 | Line 572 | load_all_modules(int warn)
572    mod_add_cmd(&accept_msgtab);
573    mod_add_cmd(&admin_msgtab);
574    mod_add_cmd(&away_msgtab);
575 +  mod_add_cmd(&bmask_msgtab);
576 +  mod_add_cmd(&cap_msgtab);
577    mod_add_cmd(&capab_msgtab);
578    mod_add_cmd(&cburst_msgtab);
579    mod_add_cmd(&close_msgtab);
# Line 641 | Line 643 | load_all_modules(int warn)
643    mod_add_cmd(&svinfo_msgtab);
644    mod_add_cmd(&tb_msgtab);
645    add_capability("TB", CAP_TB, 1);
646 +  mod_add_cmd(&tburst_msgtab);
647 +  add_capability("TBURST", CAP_TBURST, 1);
648    mod_add_cmd(&testline_msgtab);
649    mod_add_cmd(&testgecos_msgtab);
650    mod_add_cmd(&testmask_msgtab);
651    mod_add_cmd(&time_msgtab);
652 +  mod_add_cmd(&tmode_msgtab);
653    mod_add_cmd(&topic_msgtab);
654    mod_add_cmd(&trace_msgtab);
655    add_capability("UNKLN", CAP_UNKLN, 1);
# Line 663 | Line 668 | load_all_modules(int warn)
668    mod_add_cmd(&help_msgtab);
669    mod_add_cmd(&uhelp_msgtab);
670   #ifdef BUILD_CONTRIB
671 +  mod_add_cmd(&bs_msgtab);
672    mod_add_cmd(&botserv_msgtab);
673    mod_add_cmd(&capture_msgtab);
674    mod_add_cmd(&chanserv_msgtab);

Comparing:
ircd-hybrid/src/modules.c (property svn:keywords), Revision 31 by knight, Sun Oct 2 20:34:05 2005 UTC vs.
ircd-hybrid-7.2/src/modules.c (property svn:keywords), Revision 512 by michael, Sat Mar 4 16:21:54 2006 UTC

# Line 1 | Line 1
1 < "Id Revision"
1 > Id Revision

Diff Legend

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