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

Comparing ircd-hybrid/trunk/src/s_user.c (file contents):
Revision 3170 by michael, Fri Mar 14 20:19:36 2014 UTC vs.
Revision 3171 by michael, Sun Mar 16 11:51:48 2014 UTC

# Line 306 | Line 306 | register_local_user(struct Client *sourc
306        ++ServerStats.is_ref;
307        sendto_one_notice(source_p, &me, ":*** Notice -- You need to install "
308                          "identd to use this server");
309 <      exit_client(source_p, &me, "Install identd");
309 >      exit_client(source_p, "Install identd");
310        return;
311      }
312  
# Line 332 | Line 332 | register_local_user(struct Client *sourc
332        ++ServerStats.is_ref;
333  
334        sendto_one_numeric(source_p, &me, ERR_PASSWDMISMATCH);
335 <      exit_client(source_p, &me, "Bad Password");
335 >      exit_client(source_p, "Bad Password");
336        return;
337      }
338    }
# Line 363 | Line 363 | register_local_user(struct Client *sourc
363                           "Too many clients, rejecting %s[%s].",
364                           source_p->name, source_p->host);
365      ++ServerStats.is_ref;
366 <    exit_client(source_p, &me, "Sorry, server is full - try later");
366 >    exit_client(source_p, "Sorry, server is full - try later");
367      return;
368    }
369  
# Line 378 | Line 378 | register_local_user(struct Client *sourc
378      ++ServerStats.is_ref;
379      snprintf(tmpstr2, sizeof(tmpstr2), "Invalid username [%s]",
380               source_p->username);
381 <    exit_client(source_p, &me, tmpstr2);
381 >    exit_client(source_p, tmpstr2);
382      return;
383    }
384  
# Line 479 | Line 479 | register_remote_user(struct Client *sour
479      kill_client(source_p->from, source_p, "%s (Server doesn't exist)", me.name);
480  
481      AddFlag(source_p, FLAGS_KILLED);
482 <    exit_client(source_p, &me, "Ghosted Client");
482 >    exit_client(source_p, "Ghosted Client");
483      return;
484    }
485  
# Line 494 | Line 494 | register_remote_user(struct Client *sour
494                  "%s (NICK from wrong direction (%s != %s))",
495                  me.name, source_p->servptr->name, target_p->from->name);
496      AddFlag(source_p, FLAGS_KILLED);
497 <    exit_client(source_p, &me, "USER server wrong direction");
497 >    exit_client(source_p, "USER server wrong direction");
498      return;
499    }
500  
# Line 1126 | Line 1126 | check_xline(struct Client *source_p)
1126                           source_p->sockhost);
1127  
1128      ++ServerStats.is_ref;
1129 <    exit_client(source_p, &me, "Bad user info");
1129 >    exit_client(source_p, "Bad user info");
1130      return 1;
1131    }
1132  

Diff Legend

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