X-Git-Url: http://git.pk910.de/?a=blobdiff_plain;f=ChangeLog;h=092c2c668e302788d42d746d6ec9405dee3f9dde;hb=e471b5cc12c5c0eb40422df1e755123e534f0934;hp=b1bbe6bd4b8652338c9e7fc3877e88ad77e9ed8f;hpb=f2f202755d04c25b61e2b2a18a347e917acf1b9b;p=ircu2.10.12-pk.git diff --git a/ChangeLog b/ChangeLog index b1bbe6b..092c2c6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,79 @@ +2010-01-06 Michael Poole + + * ircd/gline.c (gline_add): If a forced G-line has already + expired, create it in a deactivated state. + +2010-01-06 Michael Poole + + * ircd/m_burst.c (ms_burst): Gracefully handle the case where a + server sends us a too-large oplevel. Forward oplevels whenever + they are in use, not just when the channel is +A. + +2010-01-04 Kevin L. Mitchell + + * ircd/m_xquery.c (ms_xquery): Resolving my patches with + Entrope's--log extension queries sent to us + + * ircd/m_xreply.c (ms_xreply): Resolving my patches with + Entrope's--swap order of findNUser() and FindNServer() + + * ircd/Makefile.in (IRCD_SRC): Resolving my patches with + Entrope's--swap order of m_xquery.c and m_xreply.c to maintain + alphabetic ordering + +2010-01-03 Kevin L. Mitchell + + * ircd/m_xreply.c (ms_xreply): swap order of numeric resolution so + we can deal with XR directed to users + + * configure: auto-rebuilt with Autoconf 2.63 (was 2.59) + + * ircd/m_xquery.c: need ircd_reply.h; fix a couple of + capitalization errors; log XQUERY directed to "me" + + * ircd/m_xreply.c: need ircd_reply.h and numnicks.h (how'd I miss + the latter??); fix a couple of capitalization errors + + * ircd/Makefile.in (IRCD_SRC): it'd be nice if we actually tried + to compile the two new commands... + + * ircd/s_auth.c: "serv" is passed to find_match_server(), which + does a collapse on the pattern, so it can't be const + +2010-01-03 Michael Poole + + * ircd/engine_devpoll.c: Make some variables that were local to + engine_loop() file-scoped so engine_delete() can see them. + (engine_delete): Discard unprocessed events for the deleted + socket. + (engine_loop): Update to use the new variable names. Change a + frequent debug statement to DEBUG_ENGINE. Fix the type of the + codesize variable. + + * ircd/engine_epoll.c: Same as ircd/engine_devpoll.c, but the + debug statement and codesize variable were already fixed. + + * ircd/engine_kqueue.c: Same as ircd/engine_devpoll.c, but also + fix a typo in an engine_signal() assertion, and get rid of dead + variables in engine_delete(). + +2010-01-03 Michael Poole + + * ircd/s_bsd.c (client_sock_callback): Invalidate cli_fd() when we + receive an EBADF error. + +2010-01-03 Michael Poole + + * ircd/engine_select.c (engine_loop): Remove a bogus assert() that + the structure's FD is correct after the event-handling callback + returns. Also fix a warning about the type of the last parameter + passed to getsockopt(). + +2010-01-03 Michael Poole + + * ircd/m_names.c (m_names): Terminate the buffer used for listing + clients who are not in any channel. + 2010-01-03 Michael Poole * ircd/channel.c (find_delayed_joins): Move earlier in the file.