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

Comparing ircd-hybrid/trunk/src/user.c (file contents):
Revision 3569 by michael, Fri May 16 14:59:21 2014 UTC vs.
Revision 3571 by michael, Fri May 16 15:03:14 2014 UTC

# Line 742 | Line 742 | valid_username(const char *username, con
742    {
743      while (*++p)
744      {
745 <      if ((*p == '.') && ConfigFileEntry.dots_in_ident)
745 >      if (*p == '.' && ConfigFileEntry.dots_in_ident)
746        {
747          if (++dots > ConfigFileEntry.dots_in_ident)
748            return 0;

Diff Legend

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