Further giveownership confirmation fixes.
[srvx.git] / ChangeLog
1 # do not edit -- automatically generated by arch changelog
2 # arch-tag: automatic-ChangeLog--srvx@srvx.net--2006/srvx--devo--1.3
3 #
4
5 2006-09-23 00:52:48 GMT Michael Poole <mdpoole@troilus.org>     patch-45
6
7     Summary:
8       Further giveownership confirmation fixes.
9     Revision:
10       srvx--devo--1.3--patch-45
11
12     src/chanserv.c (CSMSG_CONFIRM_GIVEOWNERSHIP): Prepend * to account name.
13       (cmd_giveownership): Check invoker access to determine need for confirmation.
14
15     modified files:
16      ChangeLog src/chanserv.c
17
18
19 2006-09-22 03:33:25 GMT Michael Poole <mdpoole@troilus.org>     patch-44
20
21     Summary:
22       Fix comment about +O vs +o.
23     Revision:
24       srvx--devo--1.3--patch-44
25
26     src/hash.h (FLAGS_OPER): The user mode is actually +o, not +O.
27
28     modified files:
29      ChangeLog src/hash.h
30
31
32 2006-09-22 03:28:08 GMT Michael Poole <mdpoole@troilus.org>     patch-43
33
34     Summary:
35       Fix license notice for mod-qserver.c
36     Revision:
37       srvx--devo--1.3--patch-43
38
39     src/mod-qserver.c: Since this was for public distribution, use the
40         standard GPL header notice.
41
42     modified files:
43      ChangeLog src/mod-qserver.c
44
45
46 2006-09-22 03:05:54 GMT Michael Poole <mdpoole@troilus.org>     patch-42
47
48     Summary:
49       Add win32 specific files to tarballs.
50     Revision:
51       srvx--devo--1.3--patch-42
52
53     Makefile.am (EXTRA_DIST): Include Makefile.win32.
54     
55     src/Makefile.am (EXTRA_srvx_SOURCES): Include config.h.win32 and ioset-win32.c.
56
57     modified files:
58      ChangeLog Makefile.am src/Makefile.am
59
60
61 2006-09-22 03:02:07 GMT Michael Poole <mdpoole@troilus.org>     patch-41
62
63     Summary:
64       First pass at native Win32 support (does not compile).
65     Revision:
66       srvx--devo--1.3--patch-41
67
68     src/compat.h: Handle Windows Sockets 2 headers.
69     
70     src/mod-memoserv.c (KEY_READ): #undef'ine to avoid its registry access
71         meaning on Windows.
72     
73     Makefile.win32: New Makefile for native or cross builds targeting Win32.
74     
75     src/config.h.win32: Pregenerated config.h for Win32.
76     
77     src/ioset-win32.c: First attempt at a Win32 ioset backend.
78
79     new files:
80      .arch-ids/Makefile.win32.id Makefile.win32
81      src/.arch-ids/config.h.win32.id src/.arch-ids/ioset-win32.c.id
82      src/config.h.win32 src/ioset-win32.c
83
84     modified files:
85      ChangeLog src/compat.h src/mod-memoserv.c
86
87
88 2006-09-22 02:51:50 GMT Michael Poole <mdpoole@troilus.org>     patch-40
89
90     Summary:
91       Add direct query server module.
92     Revision:
93       srvx--devo--1.3--patch-40
94
95     srvx.conf.example: Document qserver configuration.
96     
97     src/Makefile.am (EXTRA_srvx_SOURCES): Add mod-qserver.c.
98     
99     src/mod-qserver.c: New file.
100
101     new files:
102      src/.arch-ids/mod-qserver.c.id src/mod-qserver.c
103
104     modified files:
105      ChangeLog src/Makefile.am src/ioset-epoll.c srvx.conf.example
106
107
108 2006-09-22 02:45:20 GMT Michael Poole <mdpoole@troilus.org>     patch-39
109
110     Summary:
111       Add epoll_* ioset backend.
112     Revision:
113       srvx--devo--1.3--patch-39
114
115     configure.in: Check for epoll_create(); demote select() from being required.
116     
117     src/Makefile.am (EXTRA_srvx_SOURCES): Add ioset-epoll.c.
118     
119     src/ioset-epoll.c: New file.
120
121     new files:
122      src/.arch-ids/ioset-epoll.c.id src/ioset-epoll.c
123
124     modified files:
125      ChangeLog configure.in src/Makefile.am
126
127
128 2006-09-22 02:38:21 GMT Michael Poole <mdpoole@troilus.org>     patch-38
129
130     Summary:
131       Allow multiple ioset backends.
132     Revision:
133       srvx--devo--1.3--patch-38
134
135     configure.in: Add framework to check for ioset backends.
136     
137     src/Makefile.am (noinst_DATA): Reorganize for easier patching.
138       (checkversion): Avoid spurious error message if $(GNU_ARCH) is missing.
139       (EXTRA_srvx_SOURCES): Reorganize for easier patching; add ioset-select.c.
140       (srvx_SOURCES): Add ioset-impl.h.
141     
142     src/ioset.c (ioset.h): #include "ioset-impl.h" instead.
143       (clock_skew): Make non-static for backends.
144       (engine): New variable.
145       (active_fd): New variable (kind of kludgy).
146       (io_engine_*): New variables, only one exists so far.
147       (ioset_init): New function.
148       (ioset_cleanup): Call engine's cleanup function.
149       (ioset_add): Call engine's add function.
150       (ioset_listen): New function.
151       (ioset_connect): Call engine's update functions at appropriate points.
152       (ioset_try_write): Call engine's update function on success.
153       (ioset_close): Change signature; check against active_fd; call engine's
154         remove function.
155       (ioset_accept): New function.
156       (ioset_buffered_read): Update fd->state instead of fd->eof and call
157         engine's update function as appropriate.  Use active_fd.
158       (ioset_line_read): Check fd->state instead of fd->eof.
159       (debug_fdsets): Move to ioset-select.c.
160       (ioset_events): New function.
161       (ioset_run): Move most of the logic into ioset-select loop function;
162         call it.  Rename "select_timeout" to "timeout" to match.
163       (ioset_write): Call engine->update function.
164       (ioset_printf): New function.
165     
166     src/ioset.h (common.h): #include this header to get PRINTF_LIKE macro.
167       (struct io_fd): Replace 'connected' and 'eof' fields with 'state' field.
168       (ioset_init): Declare new function.
169       (ioset_listen): Declare new function.
170       (ioset_printf): Declare new function.
171       (ioset_close): Update signature.
172     
173     src/main.c (main): Call ioset_init().
174     
175     src/mod-sockcheck.c (sockcheck_free_client): Can unconditionally call
176         ioset_close() now.
177       (expand_var): Always use C99 type names.
178       (sockcheck_begin_test): Can unconditionally call ioset_close() now.
179       (sockcheck_read_conf): Only warn about unknown host if the user set
180         one; it is silly to arn about unknown host `(null)'.
181     
182     src/proto-common.c (socket_destroyed): Check fd->state rather than
183         fd->eof.
184       (close_socket): Update signature for ioset_close().
185
186     new files:
187      src/.arch-ids/ioset-impl.h.id src/.arch-ids/ioset-select.c.id
188      src/ioset-impl.h src/ioset-select.c
189
190     modified files:
191      ChangeLog configure.in src/Makefile.am src/ioset.c src/ioset.h
192      src/main.c src/mod-sockcheck.c src/proto-common.c
193
194
195 2006-09-22 02:15:55 GMT Michael Poole <mdpoole@troilus.org>     patch-37
196
197     Summary:
198       Add "dummy client" support.
199     Revision:
200       srvx--devo--1.3--patch-37
201
202     src/hash.h (FLAGS_DUMMY): New flag for non-propagated clients.
203       (IsDummy): Check it.
204     
205     src/helpfile.c (send_message): Allow sending to dummy clients.
206       (send_message_type): Likewise.
207     
208     src/proto-bahamut.c (irc_user): Bail if user is NULL or has a dummy nickname.
209       (deliver_to_dummy): New function.
210       (irc_privmsg): Try to deliver via dummy method before sending to IRC.
211       (irc_notice): Likewise.
212       (irc_notice_user): Likewise.
213       (AddUser): If the first user mode character is '*', mark as a dummy.
214       (DelUser): Unregister callback functions when destroying local clients.
215     
216     src/proto-p10.c (irc_user): Bail if user is NULL or has a dummy nickname.
217       (deliver_to_dummy): New function.
218       (irc_notice): Try to deliver via dummy method before sending to IRC.
219       (irc_notice_user): Likewise.
220       (irc_privmsg): Likewise.
221       (AddUser): If the first user mode character is '*', mark as a dummy.
222       (DelUser): Unregister callback functions when destroying local clients.
223
224     modified files:
225      ChangeLog src/hash.h src/helpfile.c src/proto-bahamut.c
226      src/proto-p10.c
227
228
229 2006-09-22 01:56:07 GMT Michael Poole <mdpoole@troilus.org>     patch-36
230
231     Summary:
232       Delete obsolete and non-propagated user modes.
233     Revision:
234       srvx--devo--1.3--patch-36
235
236     src/hash.h (FLAGS_LOCOP): Delete.
237       (FLAGS_SERVNOTICE): Delete.
238       (FLAGS_HELPER): Delete.
239       (IsServNotice): Delete.
240       (IsHelperIrcu): Delete.
241     
242     src/opserv.c (cmd_whois): Remove IsServNotice() or IsHelperIrcu().
243     
244     src/proto-bahamut.c (mod_usermode): Do not handle +O/+s/+h, we never see them.
245     
246     src/proto-p10.c (irc_user): Do not emit +s or +h, we never set them..
247       (mod_usermode): Do not handle +O/+s/+h, we never see them.
248
249     modified files:
250      ChangeLog src/hash.h src/opserv.c src/proto-bahamut.c
251      src/proto-p10.c
252
253
254 2006-09-22 01:48:00 GMT Michael Poole <mdpoole@troilus.org>     patch-35
255
256     Summary:
257       Merge AddService(), AddClone() into AddLocalUser()
258     Revision:
259       srvx--devo--1.3--patch-35
260
261     src/chanserv.c (init_chanserv): Convert AddService() call to AddLocalUser().
262     
263     src/global.c (init_global): Likewise.
264     
265     src/mod-helpserv.c (register_helpserv): Likewise.
266     
267     src/modcmd.c (cmd_service_add): Likewise.
268       (modcmd_load_bots): Likewise.
269     
270     src/nickserv.c (regex.h): Fall back to rxposix.h from local rx package.
271       (init_nickserv): Convert AddService() call to AddLocalUser().
272     
273     src/opserv.c (opserv_add_reserve): Convert AddClone() call to AddLocalUser().
274       (cmd_clone): Likewise.
275       (add_reserved): Likewise.
276       (init_opserv): Convert AddService() call to AddLocalUser().
277     
278     src/proto-bahamut.c (AddService): Convert into AddLocalUser().
279       (AddClone): Delete.
280     
281     src/proto-p10.c (AddService): Convert into AddLocalUser().
282       (AddClone): Delete.
283     
284     src/proto.h (AddService): Convert into AddLocalUser().
285       (AddClone): Delete.
286
287     modified files:
288      ChangeLog src/chanserv.c src/global.c src/mod-helpserv.c
289      src/modcmd.c src/nickserv.c src/opserv.c src/proto-bahamut.c
290      src/proto-p10.c src/proto.h
291
292
293 2006-09-22 01:35:03 GMT Michael Poole <mdpoole@troilus.org>     patch-34
294
295     Summary:
296       Make IRC message handler 'text' const.
297     Revision:
298       srvx--devo--1.3--patch-34
299
300     src/chanserv.c (chanserv_ctcp_check): Make 'text' parameter const.
301     
302     src/mod-helpserv.c (helpserv_usermsg): Likewise.
303       (helpserv_botmsg): Likewise.
304     
305     src/modcmd.c (svccmd_invoke): Likewise.
306       (modcmd_privmsg): Likewise.
307       (modcmd_chanmsg): Likewise.
308     
309     src/modcmd.h (SVCMSG_HOOK): Likewise.
310     
311     src/proto.h (chanmsg_func_t): Likewise.
312       (privmsg_func_t): Likewise.
313
314     modified files:
315      ChangeLog src/chanserv.c src/mod-helpserv.c src/modcmd.c
316      src/modcmd.h src/proto.h
317
318
319 2006-09-22 01:23:43 GMT Michael Poole <mdpoole@troilus.org>     patch-33
320
321     Summary:
322       Add autogen.sh to distribution tarball.
323     Revision:
324       srvx--devo--1.3--patch-33
325
326     Makefile.am: Add autogen.sh to the "extra" distributed files.
327
328     modified files:
329      ChangeLog Makefile.am
330
331
332 2006-09-11 01:03:14 GMT Michael Poole <mdpoole@troilus.org>     patch-32
333
334     Summary:
335       Support and use G-line lastmod timestamp.
336     Revision:
337       srvx--devo--1.3--patch-32
338
339     src/gline.c (KEY_LASTMOD): New key string.
340       (gline_add): Use new parameter to set lastmod.
341       (gline_add_record): Look for KEY_LASTMOD values.
342       (gline_write_entry): Set KEY_LASTMOD if lastmod is set.
343       (gline_discrim_create): Allow specification of lastmod criteria.
344       (gline_discrim_match): Check lastmod if appropriate.
345     
346     src/gline.h (struct gline): Add lastmod field.
347       (struct gline_discrim): Add lastmod fields.
348       (gline_add): New parameter.
349     
350     src/mod-sockcheck.c (sockcheck_issue_gline): Set lastmod.
351     
352     src/opserv.c (OSMSG_NO_GLINE): New format string.
353       (opserv_block): Set lastmod.
354       (cmd_gline): Set lastmod.
355       (cmd_stats_glines): Allow searching for a particular G-line (just like
356         gtrace).
357       (opserv_new_user_check): Set lastmod.
358       (gtrace_print_func): Use intervals rather than fixed dates and show
359         lastmod.
360     
361     src/opserv.help (GTRACE CRITERIA): Mention lastmod criteria.
362     
363     src/proto-p10.c (irc_gline): Send lastmod if it is set.
364       (cmd_num_gline): Parse out lastmod if it is set.
365       (cmd_gline): Parse out lastmod if it is set.
366
367     modified files:
368      ChangeLog src/gline.c src/gline.h src/mod-sockcheck.c
369      src/opserv.c src/opserv.help src/proto-p10.c
370
371
372 2006-09-09 21:37:28 GMT Michael Poole <mdpoole@troilus.org>     patch-31
373
374     Summary:
375       Network event handler fixup when ChanServ is disabled.
376     Revision:
377       srvx--devo--1.3--patch-31
378
379     src/chanserv.c (init_chanserv): Do not register network event handlers if
380         ChanServ is disabled.
381
382     modified files:
383      ChangeLog src/chanserv.c
384
385
386 2006-09-03 15:24:48 GMT Michael Poole <mdpoole@troilus.org>     patch-30
387
388     Summary:
389       Make srvx compile on cygwin again.
390     Revision:
391       srvx--devo--1.3--patch-30
392
393     configure.in (AC_CHECK_HEADERS): Look for <arpa/inet.h>.
394       (AC_CHECK_FUNCS): Look for inet_aton().
395     
396     src/compat.c: Try to include <arpa/inet.h> so we get inet_addr().
397       (getaddrinfo): If inet_aton() is not provided, use inet_addr() instead.
398     
399     src/compat.h (AI_NUMERICHOST): Define this too.
400     
401     src/tools.c (irc_pton): Use the pedantically correct type for ip4.
402
403     modified files:
404      ChangeLog configure.in src/compat.c src/compat.h src/tools.c
405
406
407 2006-09-03 15:21:10 GMT Michael Poole <mdpoole@troilus.org>     patch-29
408
409     Summary:
410       DelChannelUser call and semantic fixups
411     Revision:
412       srvx--devo--1.3--patch-29
413
414     src/hash.c (DelChannel): Fix type of 'reason' arg to DelChannelUser().
415       (DelChannelUser): Only send part message if user is local.
416     
417     src/proto-bahamut.c (DelUser): Unswap arguments to DelChannelUser().
418       (cmd_part): Move to proto-common.c.
419     
420     src/proto-common.c (part_desc): New structure type.
421       (part_helper): Use it to capture user and reason.
422       (cmd_part): New common function.
423     
424     src/proto-p10.c (cmd_part): Move to proto-common.c.
425       (DelUser): Unswap arguments to DelChannelUser().
426
427     modified files:
428      ChangeLog src/hash.c src/proto-bahamut.c src/proto-common.c
429      src/proto-p10.c
430
431
432 2006-09-03 15:17:05 GMT Michael Poole <mdpoole@troilus.org>     patch-28
433
434     Summary:
435       Do not try to moderate join-flood channels with no OpServ.
436     Revision:
437       srvx--devo--1.3--patch-28
438
439     src/opserv.c (opserv_join_check): As feigling points out, it is bad for a
440         service that does not exist to join a channel and hack modes.
441
442     modified files:
443      ChangeLog src/opserv.c
444
445
446 2006-09-03 15:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-27
447
448     Summary:
449       Fix ounregnick access check.
450     Revision:
451       srvx--devo--1.3--patch-27
452
453     src/nickserv.c (cmd_ounregnick): Use the standard rank-checking function.
454
455     modified files:
456      ChangeLog src/nickserv.c
457
458
459 2006-09-03 15:11:29 GMT Michael Poole <mdpoole@troilus.org>     patch-26
460
461     Summary:
462       Fix giveownership to how it should be
463     Revision:
464       srvx--devo--1.3--patch-26
465
466     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
467       user has real (normal) access and is not forcing the giveownership.
468
469     modified files:
470      ChangeLog
471
472
473 2006-09-03 15:10:58 GMT Michael Poole <mdpoole@troilus.org>     patch-25
474
475     Summary:
476       Fix giveownership to how it should be
477     Revision:
478       srvx--devo--1.3--patch-25
479
480     src/chanserv.c (cmd_giveownership): Only require confirmation code if the
481       user has real (normal) access and is not forcing the giveownership.
482
483     modified files:
484      ChangeLog src/chanserv.c
485
486
487 2006-08-19 13:31:08 GMT Michael Poole <mdpoole@troilus.org>     patch-24
488
489     Summary:
490       Mark channels as visited when high-level users leave.
491     Revision:
492       srvx--devo--1.3--patch-24
493
494     src/chanserv.c (handle_part): At ThiefMaster's suggestion, update a
495       channel's visited time when a high-level user leaves (parts, gets
496       kicked, or quits).
497
498     modified files:
499      ChangeLog src/chanserv.c
500
501
502 2006-08-07 03:11:10 GMT Michael Poole <mdpoole@troilus.org>     patch-23
503
504     Summary:
505       Require confirmation cookie for giveownership.
506     Revision:
507       srvx--devo--1.3--patch-23
508
509     src/chanserv.c (CSMSG_CONFIRM_GIVEOWNERSHIP): New translation string.
510       (cmd_giveownership): Fail for non-force unconfirmed giveownerships.
511
512     modified files:
513      ChangeLog src/chanserv.c
514
515
516 2006-07-29 01:36:39 GMT Michael Poole <mdpoole@troilus.org>     patch-22
517
518     Summary:
519       Add CSMSG_INVALID_CFLAG string.
520     Revision:
521       srvx--devo--1.3--patch-22
522
523     src/chanserv.c (msgtab): Add entry for "CSMSG_INVALID_CFLAG".
524
525     modified files:
526      ChangeLog src/chanserv.c
527
528
529 2006-07-29 01:34:17 GMT Michael Poole <mdpoole@troilus.org>     patch-21
530
531     Summary:
532       Fix ?csearch max timestamp default value.
533     Revision:
534       srvx--devo--1.3--patch-21
535
536     src/opserv.c (opserv_cdiscrim_create): Fix default value for max_ts.
537         (With an expression only a coder could love.  Improvements wanted.)
538
539     modified files:
540      ChangeLog src/opserv.c
541
542
543 2006-07-18 03:13:31 GMT Michael Poole <mdpoole@troilus.org>     patch-20
544
545     Summary:
546       Update arch-inventory files for in-tree builds.
547     Revision:
548       srvx--devo--1.3--patch-20
549
550     .arch-inventory: Add "libtool" as a preserved file.
551     
552     src/.arch-inventory: Add ".libs" as a preserved directory.  Put a \
553         before the . in .cvsignore to avoid capturing too much.
554
555     modified files:
556      .arch-inventory ChangeLog src/.arch-inventory
557
558
559 2006-07-18 02:48:32 GMT Michael Poole <mdpoole@troilus.org>     patch-19
560
561     Summary:
562       Make !bans searching more flexible
563     Revision:
564       srvx--devo--1.3--patch-19
565
566     src/chanserv.c (cmd_bans): Allow specifying a complete hostmask or a
567         nickname when searching bans.
568     
569     src/chanserv.help (BANS): Document the searching functions.
570
571     modified files:
572      ChangeLog src/chanserv.c src/chanserv.help
573
574
575 2006-07-18 01:49:56 GMT Michael Poole <mdpoole@troilus.org>     patch-18
576
577     Summary:
578       Simplify cdiscrim_match() max tests.
579     Revision:
580       srvx--devo--1.3--patch-18
581
582     src/opserv.c (opserv_cdiscrim_create): Explicitly initialize max_users
583         and max_ts.
584       (cdiscrim_match): Simplify the bounds tests for timestamp and users.
585
586     modified files:
587      ChangeLog src/opserv.c
588
589
590 2006-07-18 01:46:10 GMT Michael Poole <mdpoole@troilus.org>     patch-17
591
592     Summary:
593       Fix reclaim KILL behavior.
594     Revision:
595       srvx--devo--1.3--patch-17
596
597     src/nickserv.c (nickserv_reclaim): Use DelUser() instead of irc_kill(),
598         so that srvx's databases are appropriately updated.
599
600     modified files:
601      ChangeLog src/nickserv.c
602
603
604 2006-07-18 01:12:16 GMT Michael Poole <mdpoole@troilus.org>     patch-16
605
606     Summary:
607       Fix typo in English error message text.
608     Revision:
609       srvx--devo--1.3--patch-16
610
611     src/chanserv.c (CSMSG_TOPICMASK_CONFLICT2): Add missing "is".  Reported
612       by Harm, by way of Byte.
613
614     modified files:
615      ChangeLog src/chanserv.c
616
617
618 2006-05-14 02:54:24 GMT Michael Poole <mdpoole@troilus.org>     patch-15
619
620     Summary:
621       Update version tag for 1.3.1 release.
622     Revision:
623       srvx--devo--1.3--patch-15
624
625     configure.in: Update version tag for 1.3.1 release.
626
627     modified files:
628      ChangeLog configure.in
629
630
631 2006-05-02 02:46:39 GMT Michael Poole <mdpoole@troilus.org>     patch-14
632
633     Summary:
634       Make some ChanServ ban checks see through hidden hosts.
635     Revision:
636       srvx--devo--1.3--patch-14
637
638     src/chanserv.c (handle_join): Make this function see through hidden
639         hosts when matching users against bans.  Add comment before the
640         non-burst section; remove a redundant burst check there.
641       (handle_auth): See through hidden hosts when checking against active
642         bans.  Inactive ban check keeps MATCH_VISIBLE since bans on the true
643         hostname should have already been applied.
644       (handle_nick_change): Same as handle_auth.
645
646     modified files:
647      ChangeLog src/chanserv.c
648
649
650 2006-04-29 03:11:35 GMT Michael Poole <mdpoole@troilus.org>     patch-13
651
652     Summary:
653       Fix visible matching for fake and +x-hidden hosts.
654     Revision:
655       srvx--devo--1.3--patch-13
656
657     src/tools.c (user_matches_glob): Use correct test to determine whether
658         the user's host is hidden.
659
660     modified files:
661      ChangeLog src/tools.c
662
663
664 2006-04-07 00:56:38 GMT Michael Poole <mdpoole@troilus.org>     patch-12
665
666     Summary:
667       Fix a +o mode parsing error.
668     Revision:
669       srvx--devo--1.3--patch-12
670
671     src/proto-p10.c (mod_chanmode_parse): Check that the input argument after
672         +o is a valid one.
673
674     modified files:
675      ChangeLog src/proto-p10.c
676
677
678 2006-04-06 02:19:47 GMT Michael Poole <mdpoole@troilus.org>     patch-11
679
680     Summary:
681       Fix some IPv6 address compatibility issues.
682     Revision:
683       srvx--devo--1.3--patch-11
684
685     src/proto-p10.c (irc_p10_pton): Mark valid IPv4 addresses as v4-mapped.
686       (irc_p10_ntop): Emit invalid IPs as AAAAAA (but it could be _ for +6
687         flagged hubs).
688
689     modified files:
690      ChangeLog src/proto-p10.c
691
692
693 2006-04-05 02:07:30 GMT Michael Poole <mdpoole@troilus.org>     patch-10
694
695     Summary:
696       Fix a possible warning without debugging.
697     Revision:
698       srvx--devo--1.3--patch-10
699
700     src/alloc-slab.c (slab_unalloc): If assert() is #define'd to be empty,
701         then size is unused.  Include a (void)size to quash a warning.
702
703     modified files:
704      ChangeLog src/alloc-slab.c
705
706
707 2006-04-05 02:02:21 GMT Michael Poole <mdpoole@troilus.org>     patch-9
708
709     Summary:
710       Fix hostmask error from last year's patch-28.
711     Revision:
712       srvx--devo--1.3--patch-9
713
714     src/proto-common.c (generate_hostmask): When generating a strict hostmask
715         not by IP, we should keep the original hostname.
716
717     modified files:
718      ChangeLog src/proto-common.c
719
720
721 2006-04-05 01:59:54 GMT Michael Poole <mdpoole@troilus.org>     patch-8
722
723     Summary:
724       Fix compilation error with slab allocator and no debugging.
725     Revision:
726       srvx--devo--1.3--patch-8
727
728     src/alloc-slab.c (verify): Undefine as a macro before defining as a
729         function.
730
731     modified files:
732      ChangeLog src/alloc-slab.c
733
734
735 2006-04-05 00:24:50 GMT Michael Poole <mdpoole@troilus.org>     patch-7
736
737     Summary:
738       Fix backtracking bug after an escaped character.
739     Revision:
740       srvx--devo--1.3--patch-7
741
742     src/tools.c (match_ircglob): Fix backtracking behavior when an escaped
743         character did not match.
744
745     modified files:
746      ChangeLog src/tools.c
747
748
749 2006-04-05 00:11:31 GMT Michael Poole <mdpoole@troilus.org>     patch-6
750
751     Summary:
752       Advise the kernel that we will scan DB files sequentially.
753     Revision:
754       srvx--devo--1.3--patch-6
755
756     src/recdb.c (parse_database): Advise the kernel that we will scan the
757         recdb file sequentially, just in case it cannot notice the access
758         pattern on its own.
759
760     modified files:
761      ChangeLog src/recdb.c
762
763
764 2006-04-05 00:09:48 GMT Michael Poole <mdpoole@troilus.org>     patch-5
765
766     Summary:
767       Correctly implement AsLL pong.
768     Revision:
769       srvx--devo--1.3--patch-5
770
771     src/proto-p10.c (irc_pong_asll): New function.
772       (cmd_ping): Use it.
773
774     modified files:
775      ChangeLog src/proto-p10.c
776
777
778 2006-04-05 00:08:04 GMT Michael Poole <mdpoole@troilus.org>     patch-4
779
780     Summary:
781       Add missing underscore in translation key string.
782     Revision:
783       srvx--devo--1.3--patch-4
784
785     src/mod-helpserv.c (helpserv_usermsg): Add a missing underscore between
786         REQUEST and NOT.
787
788     modified files:
789      ChangeLog src/mod-helpserv.c
790
791
792 2006-04-05 00:05:59 GMT Michael Poole <mdpoole@troilus.org>     patch-3
793
794     Summary:
795       Update configure.in; support both baz and tla; avoid using dirent.
796     Revision:
797       srvx--devo--1.3--patch-3
798
799     configure.in: Remove AC_PROG_RANLIB since we never use ranlib.  Add
800         AC_PROG_LIBTOOL since we do use libtool.  Set GNU_ARCH and
801         HAS_GNU_ARCH based on whether the system has baz or tla.  Do not
802         check for dirent.d_type.
803     
804     src/Makefile.am: Make the "checkversion" target conditional on
805         HAS_GNU_ARCH, and use the detected $(GNU_ARCH).
806     
807     src/helpfile.c (language_read): Report error text when unable to open a
808         language directory.
809       (language_read_list): Always stat the language entry to determine
810         whether it is a directory; Cygwin has no dirent.d_type and ReiserFS
811         has a broken one.
812
813     modified files:
814      ChangeLog configure.in src/Makefile.am src/helpfile.c
815
816
817 2006-04-05 00:00:57 GMT Michael Poole <mdpoole@troilus.org>     patch-2
818
819     Summary:
820       Update ChangeLog (again?!), ltmain.sh and rx/Makefile.in
821     Revision:
822       srvx--devo--1.3--patch-2
823
824     ChangeLog: Update again (it didn't take, for some strange reason).
825     
826     ltmain.sh: Update to current version.
827     
828     rx/Makefile.in: Regenerate to match.
829
830     modified files:
831      ChangeLog ltmain.sh rx/Makefile.in
832
833
834 2006-04-04 23:58:31 GMT Michael Poole <mdpoole@troilus.org>     patch-1
835
836     Summary:
837       Rotate ChangeLog for the new year's archive.
838     Revision:
839       srvx--devo--1.3--patch-1
840
841     ChangeLog: Update for the new year's archive.
842
843     modified files:
844      .arch-ids/ChangeLog.id ChangeLog
845
846
847 2006-04-04 23:42:39 GMT Michael Poole <mdpoole@troilus.org>     base-0
848
849     Summary:
850       tag of srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
851     Revision:
852       srvx--devo--1.3--base-0
853
854     (automatically generated log message)
855
856     new patches:
857      sp@gamesurge.net--2005/srvx--sp--1.3--patch-1
858      sp@gamesurge.net--2005/srvx--sp--1.3--patch-2
859      srvx@srvx.net--2004-srvx/srvx--devo--1.3--base-0
860      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-1
861      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-2
862      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-3
863      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-4
864      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-5
865      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-6
866      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-7
867      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-8
868      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-9
869      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-10
870      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-11
871      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-12
872      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-13
873      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-14
874      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-15
875      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-16
876      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-17
877      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-18
878      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-19
879      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-20
880      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-21
881      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-22
882      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-23
883      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-24
884      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-25
885      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-26
886      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-27
887      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-28
888      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-29
889      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-30
890      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-31
891      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-32
892      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-33
893      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-34
894      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-35
895      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-36
896      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-37
897      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-38
898      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-39
899      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-40
900      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-41
901      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-42
902      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-43
903      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-44
904      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-45
905      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-46
906      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-47
907      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-48
908      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-49
909      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-50
910      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-51
911      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-52
912      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-53
913      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-54
914      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-55
915      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-56
916      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-57
917      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-58
918      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-59
919      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-60
920      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-61
921      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-62
922      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-63
923      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-64
924      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-65
925      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-66
926      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-67
927      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-68
928      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-69
929      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-70
930      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-71
931      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-72
932      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-73
933      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-74
934      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-75
935      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-76
936      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-77
937      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-78
938      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-79
939      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-80
940      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-81
941      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-82
942      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-83
943      srvx@srvx.net--2004-srvx/srvx--devo--1.3--patch-84
944      srvx@srvx.net--2005-srvx/srvx--devo--1.3--base-0
945      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-1
946      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-2
947      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-3
948      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-4
949      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-5
950      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-6
951      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-7
952      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-8
953      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-9
954      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-10
955      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-11
956      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-12
957      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-13
958      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-14
959      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-15
960      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-16
961      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-17
962      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-18
963      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-19
964      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-20
965      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-21
966      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-22
967      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-23
968      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-24
969      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-25
970      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-26
971      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-27
972      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-28
973      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-29
974      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-30
975      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-31
976      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-32
977      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-33
978      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-34
979      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-35
980      srvx@srvx.net--2005-srvx/srvx--devo--1.3--patch-36
981
982