CVSROOT : /cvsroot/undernet-ircu
Module : ircu2.10
Branch tags: u2_10_11_05
Commit time: 2003-07-03 23:16:29 UTC
Modified files:
Tag: u2_10_11_05
ChangeLog ircd/s_user.c
Log message:
Author: Spike
Log message: Fixed a small typo, thanks to reed for pointing this out.
---------------------- diff included ----------------------
Index: ircu2.10/ChangeLog
diff -u ircu2.10/ChangeLog:1.290.2.128.2.27 ircu2.10/ChangeLog:1.290.2.128.2.28
--- ircu2.10/ChangeLog:1.290.2.128.2.27 Tue Jul 1 06:23:07 2003
+++ ircu2.10/ChangeLog Thu Jul 3 16:16:18 2003
@@ -1,3 +1,6 @@
+2003-07-04 Spike <[EMAIL PROTECTED]>
+ * ircd/s_user.c: Fixed a small typo
+
2003-07-01 Isomer <[EMAIL PROTECTED]>
* ircd/s_nick.c: Add [EMAIL PROTECTED] information to client exiting notices
Index: ircu2.10/ircd/s_user.c
diff -u ircu2.10/ircd/s_user.c:1.52.2.15.2.5 ircu2.10/ircd/s_user.c:1.52.2.15.2.6
--- ircu2.10/ircd/s_user.c:1.52.2.15.2.5 Tue Jul 1 06:07:27 2003
+++ ircu2.10/ircd/s_user.c Thu Jul 3 16:16:18 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.5 2003/07/01 13:07:27 isomer Exp $
+ * $Id: s_user.c,v 1.52.2.15.2.6 2003/07/03 23:16:18 denspike Exp $
*/
#include "config.h"
@@ -568,7 +568,7 @@
"Client connecting: %s ([EMAIL PROTECTED]) [%s] {%d} [%s]",
cli_name(sptr), user->username, user->host,
cli_sock_ip(sptr), get_client_class(sptr),
- cli_info(user)
+ cli_info(sptr)
);
IPcheck_connect_succeeded(sptr);
}
----------------------- End of diff -----------------------