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