CVSROOT    : /cvsroot/undernet-ircu
Module     : ircu2.10
Branch tags: u2_10_11_05
Commit time: 2003-07-01 13:07:37 UTC

Modified files:
  Tag: u2_10_11_05
     ChangeLog ircd/s_user.c

Log message:

Author: Isomer <[EMAIL PROTECTED]>
Log message:

Added realname information to client connect messages for tcm style bots

---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.128.2.25 ircu2.10/ChangeLog:1.290.2.128.2.26
--- ircu2.10/ChangeLog:1.290.2.128.2.25 Sun Jun 29 05:26:13 2003
+++ ircu2.10/ChangeLog  Tue Jul  1 06:07:27 2003
@@ -1,3 +1,6 @@
+2003-07-01 Isomer <[EMAIL PROTECTED]>
+       * ircd/s_user.c: Add realname information to client connect notices
+
 2003-06-29 hikari <[EMAIL PROTECTED]>
        * ircd/IPcheck.c: Fixed overflow problem in
        ip_registry_connect_fail()
Index: ircu2.10/ircd/s_user.c
diff -u ircu2.10/ircd/s_user.c:1.52.2.15.2.4 ircu2.10/ircd/s_user.c:1.52.2.15.2.5
--- ircu2.10/ircd/s_user.c:1.52.2.15.2.4        Thu Jun 26 21:47:07 2003
+++ ircu2.10/ircd/s_user.c      Tue Jul  1 06:07:27 2003
@@ -20,7 +20,7 @@
  * along with this program; if not, write to the Free Software
  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  *
- * $Id: s_user.c,v 1.52.2.15.2.4 2003/06/27 04:47:07 klmitch Exp $
+ * $Id: s_user.c,v 1.52.2.15.2.5 2003/07/01 13:07:27 isomer Exp $
  */
 #include "config.h"
 
@@ -565,9 +565,11 @@
       set_snomask(sptr, cli_snomask(sptr) & SNO_NOISY, SNO_ADD);
     if (feature_bool(FEAT_CONNEXIT_NOTICES))
       sendto_opmask_butone(0, SNO_CONNEXIT,
-                          "Client connecting: %s ([EMAIL PROTECTED]) [%s] {%d}",
+                          "Client connecting: %s ([EMAIL PROTECTED]) [%s] {%d} [%s]",
                           cli_name(sptr), user->username, user->host,
-                          cli_sock_ip(sptr), get_client_class(sptr));
+                          cli_sock_ip(sptr), get_client_class(sptr),
+                          cli_info(user)
+                          );
     IPcheck_connect_succeeded(sptr);
   }
   else
----------------------- End of diff -----------------------

Reply via email to