From: Perry Lorier Date: Mon, 27 Mar 2000 06:19:37 +0000 (+0000) Subject: Author: Isomer X-Git-Url: http://git.pk910.de/?a=commitdiff_plain;h=3c99eccd934a852929b2c59b66e563d486ee397b;p=ircu2.10.12-pk.git Author: Isomer Log message: Fixed missing 'u' typo in ircd/s_bsd.c (oops!) git-svn-id: file:///home/klmitch/undernet-ircu/undernet-ircu-svn/ircu2/trunk@72 c9e4aea6-c8fd-4c43-8297-357d70d61c8c --- diff --git a/ChangeLog b/ChangeLog index fce8111..e467250 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2000-03-27 Perry Lorier + + * ircd/s_bsd.c: fixed missing 'u' typo. + 2000-03-26 Kevin L. Mitchell * ircd/channel.c: implement modebuf_init(), _mode(), _mode_uint(), @@ -10,7 +14,7 @@ # # ChangeLog for ircu2.10.11 # -# $Id: ChangeLog,v 1.23 2000-03-27 04:36:11 kev Exp $ +# $Id: ChangeLog,v 1.24 2000-03-27 06:19:37 isomer Exp $ # # Insert new changes at beginning of the change list. # diff --git a/ircd/s_bsd.c b/ircd/s_bsd.c index 2bd8cb8..2387723 100644 --- a/ircd/s_bsd.c +++ b/ircd/s_bsd.c @@ -1129,7 +1129,7 @@ int read_message(time_t delay) uping_next = uping->next; if (uping->active) { delay2 = 1; - if (uping->lastsent && CurrentTime > ping->timeout) { + if (uping->lastsent && CurrentTime > uping->timeout) { uping_end(uping); continue; }