فهرست منبع

* Ported [2463] to 1.2.9

svn: 2605
Bryan Drewery 20 سال پیش
والد
کامیت
9d00fd68e9
2فایلهای تغییر یافته به همراه2 افزوده شده و 1 حذف شده
  1. 1 0
      doc/UPDATES
  2. 1 1
      src/mod/irc.mod/msgcmds.c

+ 1 - 0
doc/UPDATES

@@ -31,6 +31,7 @@ Lines prefixed with '-' were disabled before release and are not finished, or ar
 * Removed old compatability code for converting CONFIG->SET during userfile loading.
 * Fixed "un-allocated socket" errors when a relay fails.
 * Fixed var 'server-port' not being used correctly. (Now lists/saves/loads before servers)
+* Fixed a typo in msg_pass.
 
 1.2.8
 * Fixed [bot]* cmds depending on case of botnicks.

+ 1 - 1
src/mod/irc.mod/msgcmds.c

@@ -75,7 +75,7 @@ static int msg_pass(char *nick, char *host, struct userrec *u, char *par)
   if (par[0]) {
     if (!u_pass_match(u, old)) {
       putlog(LOG_CMDS, "*", "(%s!%s) !%s! $b!$bPASS...", nick, host, u->handle);
-      dprintf(DP_HELP, "NOTICE %s :Incorrent password.\n", nick);
+      dprintf(DP_HELP, "NOTICE %s :Incorrect password.\n", nick);
       return BIND_RET_BREAK;
     }
     mynew = newsplit(&par);