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

Comparing ircd-hybrid-7.2/src/s_user.c (file contents):
Revision 507 by michael, Sat Mar 4 08:20:28 2006 UTC vs.
Revision 510 by michael, Sat Mar 4 08:37:51 2006 UTC

# Line 515 | Line 515 | register_remote_user(struct Client *clie
515    strlcpy(source_p->info, realname, sizeof(source_p->info));
516    strlcpy(source_p->username, username, sizeof(source_p->username));
517  
518  /* Increment our total user count here */
519  if (++Count.total > Count.max_tot)
520    Count.max_tot = Count.total;
521
522  source_p->from->serv->dep_users++;
523
518    /*
519     * coming from another server, take the servers word for it
520     */
# Line 558 | Line 552 | register_remote_user(struct Client *clie
552      return;
553    }
554  
555 +  /* Increment our total user count here */
556 +  if (++Count.total > Count.max_tot)
557 +    Count.max_tot = Count.total;
558 +
559 +  ++source_p->from->serv->dep_users;
560 +
561    SetClient(source_p);
562    dlinkAdd(source_p, &source_p->lnode, &source_p->servptr->serv->users);
563    add_user_host(source_p->username, source_p->host, 1);

Diff Legend

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