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

Comparing ircd-hybrid-7.2/src/channel.c (file contents):
Revision 633 by db, Thu Jun 1 12:30:29 2006 UTC vs.
Revision 634 by db, Thu Jun 1 12:34:29 2006 UTC

# Line 324 | Line 324 | check_channel_name(const char *name, int
324    if (!local || !ConfigChannel.disable_fake_channels)
325    {
326      while (*++p)
327 <      if (!IsVisibleChanChar(*p))
327 >      if (!IsChanChar(*p))
328          return 0;
329    }
330    else
331    {
332      while (*++p)
333 <      if (!IsChanChar(*p))
333 >      if (!IsVisibleChanChar(*p))
334          return 0;
335    }
336  

Diff Legend

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