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