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