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

Comparing ircd-hybrid/branches/8.2.x/modules/m_connect.c (file contents):
Revision 4686 by michael, Fri Oct 3 11:38:06 2014 UTC vs.
Revision 4688 by michael, Fri Oct 3 13:04:52 2014 UTC

# Line 87 | Line 87 | mo_connect(struct Client *source_p, int
87     * Try to find the name, then host, if both fail notify ops and bail
88     */
89    if (!(conf = find_matching_name_conf(CONF_SERVER, parv[1], NULL, NULL, 0)) &&
90 <      !(conf = find_matching_name_conf(CONF_SERVER,  NULL, NULL, parv[1], 0)))
90 >      !(conf = find_matching_name_conf(CONF_SERVER, NULL, NULL, parv[1], 0)))
91    {
92      sendto_one_notice(source_p, &me, ":Connect: Host %s not listed in configuration file", parv[1]);
93      return 0;
# Line 194 | Line 194 | ms_connect(struct Client *source_p, int
194     * Try to find the name, then host, if both fail notify ops and bail
195     */
196    if (!(conf = find_matching_name_conf(CONF_SERVER, parv[1], NULL, NULL, 0)) &&
197 <      !(conf = find_matching_name_conf(CONF_SERVER,  NULL, NULL, parv[1], 0)))
197 >      !(conf = find_matching_name_conf(CONF_SERVER, NULL, NULL, parv[1], 0)))
198    {
199      sendto_one_notice(source_p, &me, ":Connect: Host %s not listed in configuration file", parv[1]);
200      return 0;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines