forked from Estella/eggdrop-1.6
-
Notifications
You must be signed in to change notification settings - Fork 0
/
ChangeLog
48335 lines (26403 loc) · 855 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
2008-06-17 05:49 tothwolf
* doc/UPDATES1.6, misc/releaseprep: Modified releaseprep script to
run cvs2cl so we will (hopefully) have an up-to-date ChangeLog
file before each release.
2008-06-17 05:15 tothwolf
* doc/UPDATES1.6, misc/config.guess, misc/config.sub: Updated
config.guess and config.sub build system triplet detection
scripts to the latest versions from
http://git.savannah.gnu.org/gitweb/?p=config.git;a=tree;hb=HEAD
These were nearly 7 years old and way overdue for an update.
2008-06-17 00:46 tothwolf
* doc/UPDATES1.6: [no log message]
2008-04-29 20:07 guppy
* doc/UPDATES1.6, src/patch.h, src/mod/server.mod/servmsg.c: minor
raw logging fix
2008-04-29 12:29 guppy
* doc/UPDATES1.6, src/patch.h, src/mod/irc.mod/tclirc.c:
tcl_maskhost could crash the bot, fixed by FireEgl
2008-04-28 18:54 guppy
* doc/UPDATES1.6, src/patch.h, src/mod/irc.mod/chan.c,
src/mod/irc.mod/irc.c, src/mod/server.mod/servmsg.c: Quakenet has
an auto-invite flag which in some cases could cause a bot to
flood off the server, hopefully this fixes that problem
2008-04-19 09:57 guppy
* configure, configure.ac, doc/COMPILE-GUIDE, doc/PATCH-HOWTO,
doc/TEXT-SUBSTITUTIONS, doc/UPDATES1.6,
doc/html/app-textsub.html, doc/html/compiling.html,
doc/html/patch-howto.html, doc/html/tcl-commands.html,
misc/newversion, src/main.c, src/patch.h,
src/mod/compress.mod/configure,
src/mod/compress.mod/configure.ac, src/mod/dns.mod/configure,
src/mod/dns.mod/configure.ac: and so starts 1.6.20
2008-02-18 16:25 guppy
* configure, configure.ac, doc/UPDATES1.6, src/patch.h: updated the
recommended TCL version
2008-02-16 15:40 guppy
* CONTENTS, FEATURES, INSTALL, NEWS, README, aclocal.m4, configure,
configure.ac, doc/ABOUT, doc/AUTHORS, doc/BANS, doc/BOTNET,
doc/COMPILE-GUIDE, doc/CONTENTS, doc/FIRST-SCRIPT,
doc/KNOWN-PROBLEMS, doc/MODULES, doc/PARTYLINE, doc/PATCH-HOWTO,
doc/TEXT-SUBSTITUTIONS, doc/TRICKS, doc/UPDATES1.6, doc/USERS,
doc/WEIRD-MESSAGES, doc/html/about.html,
doc/html/app-problems.html, doc/html/app-textsub.html,
doc/html/app-tricks.html, doc/html/app-weird.html,
doc/html/authors.html, doc/html/bans.html, doc/html/botnet.html,
doc/html/compiling.html, doc/html/egg-core.html,
doc/html/faqs.html, doc/html/features.html, doc/html/index.html,
doc/html/install.html, doc/html/mod-assoc.html,
doc/html/mod-blowfish.html, doc/html/mod-channels.html,
doc/html/mod-compress.html, doc/html/mod-console.html,
doc/html/mod-ctcp.html, doc/html/mod-dns.html,
doc/html/mod-filesys.html, doc/html/mod-irc.html,
doc/html/mod-notes.html, doc/html/mod-seen.html,
doc/html/mod-server.html, doc/html/mod-share.html,
doc/html/mod-uptime.html, doc/html/mod-wire.html,
doc/html/mod-woobie.html, doc/html/news.html,
doc/html/party.html, doc/html/patch-howto.html,
doc/html/readme.html, doc/html/starting.html,
doc/html/tcl-commands.html, doc/html/users.html,
doc/man1/eggdrop.1, doc/settings/CONTENTS,
doc/settings/core.settings, doc/settings/mod.assoc,
doc/settings/mod.blowfish, doc/settings/mod.channels,
doc/settings/mod.compress, doc/settings/mod.console,
doc/settings/mod.ctcp, doc/settings/mod.dns,
doc/settings/mod.filesys, doc/settings/mod.irc,
doc/settings/mod.notes, doc/settings/mod.seen,
doc/settings/mod.server, doc/settings/mod.share,
doc/settings/mod.transfer, doc/settings/mod.uptime,
doc/settings/mod.wire, doc/settings/mod.woobie, logs/CONTENTS,
misc/addpatch, misc/killwhitespace, misc/makedepend,
misc/modconfig, misc/newversion, misc/releaseprep,
misc/runautotools, scripts/CONTENTS, scripts/action.fix.tcl,
scripts/alltools.tcl, scripts/compat.tcl, scripts/ques5.tcl,
src/bg.c, src/bg.h, src/botcmd.c, src/botmsg.c, src/botnet.c,
src/chan.h, src/chanprog.c, src/cmds.c, src/cmdt.h, src/dcc.c,
src/dccutil.c, src/dns.c, src/dns.h, src/eggdrop.h, src/flags.c,
src/flags.h, src/lang.h, src/language.c, src/main.c, src/main.h,
src/mem.c, src/misc.c, src/misc_file.c, src/misc_file.h,
src/modules.c, src/modules.h, src/net.c, src/patch.h,
src/proto.h, src/rfc1459.c, src/stat.h, src/tandem.h, src/tcl.c,
src/tcldcc.c, src/tclegg.h, src/tclhash.c, src/tclhash.h,
src/tclmisc.c, src/tcluser.c, src/userent.c, src/userrec.c,
src/users.c, src/users.h, src/compat/compat.h,
src/compat/inet_aton.c, src/compat/inet_aton.h,
src/compat/memcpy.c, src/compat/memcpy.h, src/compat/memset.c,
src/compat/memset.h, src/compat/snprintf.c,
src/compat/snprintf.h, src/compat/strcasecmp.c,
src/compat/strcasecmp.h, src/compat/strftime.c,
src/compat/strftime.h, src/mod/module.h, src/mod/modvals.h,
src/mod/assoc.mod/assoc.c, src/mod/assoc.mod/assoc.h,
src/mod/blowfish.mod/bf_tab.h, src/mod/blowfish.mod/blowfish.c,
src/mod/blowfish.mod/blowfish.h, src/mod/channels.mod/channels.c,
src/mod/channels.mod/channels.h, src/mod/channels.mod/cmdschan.c,
src/mod/channels.mod/tclchan.c, src/mod/channels.mod/udefchan.c,
src/mod/channels.mod/userchan.c, src/mod/compress.mod/compress.c,
src/mod/compress.mod/compress.h, src/mod/compress.mod/configure,
src/mod/compress.mod/configure.ac,
src/mod/compress.mod/tclcompress.c,
src/mod/console.mod/console.c, src/mod/console.mod/console.h,
src/mod/ctcp.mod/ctcp.c, src/mod/ctcp.mod/ctcp.h,
src/mod/dns.mod/configure, src/mod/dns.mod/configure.ac,
src/mod/dns.mod/coredns.c, src/mod/dns.mod/dns.c,
src/mod/dns.mod/dns.h, src/mod/filesys.mod/dbcompat.c,
src/mod/filesys.mod/dbcompat.h, src/mod/filesys.mod/filedb3.c,
src/mod/filesys.mod/filedb3.h, src/mod/filesys.mod/filelist.c,
src/mod/filesys.mod/filelist.h, src/mod/filesys.mod/files.c,
src/mod/filesys.mod/files.h, src/mod/filesys.mod/filesys.c,
src/mod/filesys.mod/filesys.h, src/mod/filesys.mod/tclfiles.c,
src/mod/irc.mod/chan.c, src/mod/irc.mod/cmdsirc.c,
src/mod/irc.mod/irc.c, src/mod/irc.mod/irc.h,
src/mod/irc.mod/mode.c, src/mod/irc.mod/msgcmds.c,
src/mod/irc.mod/tclirc.c, src/mod/notes.mod/cmdsnote.c,
src/mod/notes.mod/notes.c, src/mod/notes.mod/notes.h,
src/mod/seen.mod/seen.c, src/mod/server.mod/cmdsserv.c,
src/mod/server.mod/server.c, src/mod/server.mod/server.h,
src/mod/server.mod/servmsg.c, src/mod/server.mod/tclserv.c,
src/mod/share.mod/share.c, src/mod/share.mod/share.h,
src/mod/share.mod/uf_features.c,
src/mod/transfer.mod/tcltransfer.c,
src/mod/transfer.mod/transfer.c, src/mod/transfer.mod/transfer.h,
src/mod/transfer.mod/transferfstat.c,
src/mod/transfer.mod/transferqueue.c,
src/mod/uptime.mod/uptime.c, src/mod/uptime.mod/uptime.h,
src/mod/wire.mod/wire.c, src/mod/wire.mod/wire.h,
src/mod/woobie.mod/woobie.c, text/CONTENTS, text/banner: update
the Copyright dates
2008-02-16 14:15 guppy
* eggdrop.conf, doc/UPDATES1.6, src/patch.h: a couple small config
changes
2008-02-16 00:00 guppy
* eggdrop.conf, doc/UPDATES1.6, scripts/Makefile.in,
scripts/quotepong.tcl, src/patch.h: added the quotepong.tcl
2008-02-10 20:28 guppy
* eggdrop.conf, scripts/Makefile.in, scripts/quotepass.tcl: a
couple of small fixes to the quotepass.tcl script
2008-02-10 19:43 guppy
* scripts/quotepass.tcl: stdarg != sl, sl is not nearly as sexy
2008-02-10 19:23 guppy
* scripts/quotepass.tcl: and the script for the previous commit
2008-02-10 19:22 guppy
* eggdrop.conf, doc/UPDATES1.6: added a simple TCL for some silly
Undernet servers
2008-02-04 20:36 guppy
* doc/UPDATES1.6: a little too much text in the UPDATES1.6
2008-02-04 18:19 guppy
* doc/UPDATES1.6, src/chan.h, src/patch.h,
src/mod/channels.mod/channels.c, src/mod/irc.mod/chan.c,
src/mod/irc.mod/mode.c: Add support for Quakenet's chanmode +T
2008-02-04 18:14 guppy
* doc/UPDATES1.6, src/patch.h, src/mod/server.mod/servmsg.c:
Applied the CTCP fix patch
2007-11-19 01:24 wcc
* src/patch.h: * patch.h to make Windrop CVS guys happy ;)
2007-10-17 03:03 wcc
* configure, src/mod/compress.mod/configure,
src/mod/dns.mod/configure: * Ran misc/runautotools.
2007-10-17 03:02 wcc
* configure.ac, doc/COMPILE-GUIDE, doc/PATCH-HOWTO,
doc/TEXT-SUBSTITUTIONS, doc/html/app-textsub.html,
doc/html/compiling.html, doc/html/patch-howto.html,
doc/html/tcl-commands.html, src/main.c,
src/mod/compress.mod/configure.ac, src/mod/dns.mod/configure.ac:
* 1.6.18 -> 1.6.19. Aparently we never did this. Oops, my bad :/
Thanks to kirben for noticing.
2007-10-17 02:55 wcc
* FEATURES, doc/UPDATES1.6, doc/html/features.html: - Fixed a
couple of typos in the FEATURES file. * Patch by: Tomas
Szaniszlo
2007-10-17 02:52 wcc
* doc/AUTHORS: * Added Kevin Lynn / wayhigh to doc/AUTHORS.
Kevin Lynn wrote:
> Back when Robey was developing the original eggdrop, I was the
admin for
> all machines at connected.com (including hebron, goshen, etc.)
that gave
> Robey an account without limitations and helped do a fair
amount of
> alpha/beta testing for the early bot versions.
>
> I'd love to be included in the authors file as I feel I
certainly
> contributed back in the early days.
>
> Thank you,
> Kevin Lynn aka. wayhigh
>
2007-10-17 02:42 wcc
* doc/UPDATES1.6, src/mod/server.mod/servmsg.c: - Fixed two buffer
overflows in servmsg.c. * Found by: Bow Sineath - Patch by: Nico
Golde / Wcc
2007-10-17 01:42 wcc
* src/mod/server.mod/server.c: * Fixed a typo in server.c. Thanks
to Domino Mizuno.
2007-04-20 23:38 wcc
* CONTENTS, FEATURES, INSTALL, NEWS, README, aclocal.m4, configure,
configure.ac, doc/ABOUT, doc/AUTHORS, doc/BANS, doc/BOTNET,
doc/COMPILE-GUIDE, doc/CONTENTS, doc/FIRST-SCRIPT,
doc/KNOWN-PROBLEMS, doc/MODULES, doc/PARTYLINE, doc/PATCH-HOWTO,
doc/TEXT-SUBSTITUTIONS, doc/TRICKS, doc/USERS,
doc/WEIRD-MESSAGES, doc/html/about.html,
doc/html/app-problems.html, doc/html/app-textsub.html,
doc/html/app-tricks.html, doc/html/app-weird.html,
doc/html/authors.html, doc/html/bans.html, doc/html/botnet.html,
doc/html/compiling.html, doc/html/egg-core.html,
doc/html/faqs.html, doc/html/features.html, doc/html/index.html,
doc/html/install.html, doc/html/mod-assoc.html,
doc/html/mod-blowfish.html, doc/html/mod-channels.html,
doc/html/mod-compress.html, doc/html/mod-console.html,
doc/html/mod-ctcp.html, doc/html/mod-dns.html,
doc/html/mod-filesys.html, doc/html/mod-irc.html,
doc/html/mod-notes.html, doc/html/mod-seen.html,
doc/html/mod-server.html, doc/html/mod-share.html,
doc/html/mod-uptime.html, doc/html/mod-wire.html,
doc/html/mod-woobie.html, doc/html/news.html,
doc/html/party.html, doc/html/patch-howto.html,
doc/html/readme.html, doc/html/starting.html,
doc/html/tcl-commands.html, doc/html/users.html,
doc/man1/eggdrop.1, doc/settings/CONTENTS,
doc/settings/core.settings, doc/settings/mod.assoc,
doc/settings/mod.blowfish, doc/settings/mod.channels,
doc/settings/mod.compress, doc/settings/mod.console,
doc/settings/mod.ctcp, doc/settings/mod.dns,
doc/settings/mod.filesys, doc/settings/mod.irc,
doc/settings/mod.notes, doc/settings/mod.seen,
doc/settings/mod.server, doc/settings/mod.share,
doc/settings/mod.transfer, doc/settings/mod.uptime,
doc/settings/mod.wire, doc/settings/mod.woobie, logs/CONTENTS,
misc/addpatch, misc/killwhitespace, misc/makedepend,
misc/modconfig, misc/newversion, misc/releaseprep,
misc/runautotools, scripts/CONTENTS, scripts/action.fix.tcl,
scripts/alltools.tcl, scripts/compat.tcl, scripts/ques5.tcl,
src/bg.c, src/bg.h, src/botcmd.c, src/botmsg.c, src/botnet.c,
src/chan.h, src/chanprog.c, src/cmds.c, src/cmdt.h, src/dcc.c,
src/dccutil.c, src/dns.c, src/dns.h, src/eggdrop.h, src/flags.c,
src/flags.h, src/lang.h, src/language.c, src/main.c, src/main.h,
src/mem.c, src/misc.c, src/misc_file.c, src/misc_file.h,
src/modules.c, src/modules.h, src/net.c, src/patch.h,
src/proto.h, src/rfc1459.c, src/stat.h, src/tandem.h, src/tcl.c,
src/tcldcc.c, src/tclegg.h, src/tclhash.c, src/tclhash.h,
src/tclmisc.c, src/tcluser.c, src/userent.c, src/userrec.c,
src/users.c, src/users.h, src/compat/compat.h,
src/compat/inet_aton.c, src/compat/inet_aton.h,
src/compat/memcpy.c, src/compat/memcpy.h, src/compat/memset.c,
src/compat/memset.h, src/compat/snprintf.c,
src/compat/snprintf.h, src/compat/strcasecmp.c,
src/compat/strcasecmp.h, src/compat/strftime.c,
src/compat/strftime.h, src/mod/module.h, src/mod/modvals.h,
src/mod/assoc.mod/assoc.c, src/mod/assoc.mod/assoc.h,
src/mod/blowfish.mod/bf_tab.h, src/mod/blowfish.mod/blowfish.c,
src/mod/blowfish.mod/blowfish.h, src/mod/channels.mod/channels.c,
src/mod/channels.mod/channels.h, src/mod/channels.mod/cmdschan.c,
src/mod/channels.mod/tclchan.c, src/mod/channels.mod/udefchan.c,
src/mod/channels.mod/userchan.c, src/mod/compress.mod/compress.c,
src/mod/compress.mod/compress.h, src/mod/compress.mod/configure,
src/mod/compress.mod/configure.ac,
src/mod/compress.mod/tclcompress.c,
src/mod/console.mod/console.c, src/mod/console.mod/console.h,
src/mod/ctcp.mod/ctcp.c, src/mod/ctcp.mod/ctcp.h,
src/mod/dns.mod/configure, src/mod/dns.mod/configure.ac,
src/mod/dns.mod/coredns.c, src/mod/dns.mod/dns.c,
src/mod/dns.mod/dns.h, src/mod/filesys.mod/dbcompat.c,
src/mod/filesys.mod/dbcompat.h, src/mod/filesys.mod/filedb3.c,
src/mod/filesys.mod/filedb3.h, src/mod/filesys.mod/filelist.c,
src/mod/filesys.mod/filelist.h, src/mod/filesys.mod/files.c,
src/mod/filesys.mod/files.h, src/mod/filesys.mod/filesys.c,
src/mod/filesys.mod/filesys.h, src/mod/filesys.mod/tclfiles.c,
src/mod/irc.mod/chan.c, src/mod/irc.mod/cmdsirc.c,
src/mod/irc.mod/irc.c, src/mod/irc.mod/irc.h,
src/mod/irc.mod/mode.c, src/mod/irc.mod/msgcmds.c,
src/mod/irc.mod/tclirc.c, src/mod/notes.mod/cmdsnote.c,
src/mod/notes.mod/notes.c, src/mod/notes.mod/notes.h,
src/mod/seen.mod/seen.c, src/mod/server.mod/cmdsserv.c,
src/mod/server.mod/server.c, src/mod/server.mod/server.h,
src/mod/server.mod/servmsg.c, src/mod/server.mod/tclserv.c,
src/mod/share.mod/share.c, src/mod/share.mod/share.h,
src/mod/share.mod/uf_features.c,
src/mod/transfer.mod/tcltransfer.c,
src/mod/transfer.mod/transfer.c, src/mod/transfer.mod/transfer.h,
src/mod/transfer.mod/transferfstat.c,
src/mod/transfer.mod/transferqueue.c,
src/mod/uptime.mod/uptime.c, src/mod/uptime.mod/uptime.h,
src/mod/wire.mod/wire.c, src/mod/wire.mod/wire.h,
src/mod/woobie.mod/woobie.c, text/CONTENTS, text/banner: * 2007
Copyright; 4 months late!
2006-11-20 08:09 tothwolf
* configure, configure.ac, src/tcldcc.c: * Updated recommended Tcl
version. * Fixed typo from long time_t changes.
2006-11-20 05:38 tothwolf
* aclocal.m4, config.h.in, doc/UPDATES1.6, src/Makefile.in,
src/dcc.c, src/patch.h, src/tcldcc.c, src/tcluser.c,
src/userent.c, src/userrec.c, src/mod/channels.mod/tclchan.c,
src/mod/channels.mod/userchan.c, src/mod/filesys.mod/filesys.c,
src/mod/seen.mod/seen.c: * Fixed compatibility problems with
certain time_t implementations.
2006-08-21 12:40 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/server.mod/server.c: -
Complete raw traffic wasn't getting logged in some cases; only
the raw command itself was. Fixed. * Patch by: mrBuG
2006-07-09 17:14 wcc
* doc/UPDATES1.6: * Update doc/UPDATES1.6 for release.
2006-07-09 17:02 wcc
* configure: * Ran misc/runautotools. Release ready in a few
minutes.
2006-07-09 17:00 wcc
* config.h.in, configure, configure.ac, misc/config.guess,
misc/config.sub, src/proto.h: * Revert to old config.guess /
config.sub. It was causing problems on a few OS's. I just want
to get 1.6.18 out, so I'll stick this back in as soon as it is.
2006-05-28 20:56 wcc
* doc/UPDATES1.6, misc/config.guess, misc/config.sub, src/patch.h,
src/mod/filesys.mod/filesys.c: * Use the latest config.guess /
config.sub. * Found by: SiD3WiNDR - Patch by: Wcc
2006-05-21 15:31 wcc
* configure: * Ran misc/runautotools.
2006-05-21 15:31 wcc
* configure.ac, doc/UPDATES1.6, src/patch.h: * Look for Tcl in
/lib64 and /usr/lib64. * Patch by: Kuja
2006-04-14 17:18 wcc
* doc/AUTHORS: * AUTHORS updates.
2006-04-05 10:11 wcc
* configure, src/mod/compress.mod/configure,
src/mod/dns.mod/configure: * Forgot to misc/runautotools after
copyright updates.
2006-04-05 09:49 wcc
* doc/UPDATES1.6: * Fixed incorrect patch author in UPDATES1.6.
2006-04-03 12:42 guppy
* doc/UPDATES1.6: updated the release date of RC1
2006-03-28 18:52 wcc
* doc/AUTHORS: * Added lordares to AUTHORS.
2006-03-28 18:47 wcc
* doc/AUTHORS: * Fixed a typo in authors. Thanks reed.
2006-03-28 04:02 wcc
* doc/UPDATES1.6: * Release prep.
2006-03-28 03:09 wcc
* doc/AUTHORS: * Added Sven Trenkel to the AUTHORS file :) If
anyone else thinks they are missing, please let me know.
2006-03-27 20:35 wcc
* doc/settings/CONTENTS, doc/settings/core.settings,
doc/settings/mod.assoc, doc/settings/mod.blowfish,
doc/settings/mod.channels, doc/settings/mod.compress,
doc/settings/mod.console, doc/settings/mod.ctcp,
doc/settings/mod.dns, doc/settings/mod.filesys,
doc/settings/mod.irc, doc/settings/mod.notes,
doc/settings/mod.seen, doc/settings/mod.server,
doc/settings/mod.share, doc/settings/mod.transfer,
doc/settings/mod.uptime, doc/settings/mod.wire,
doc/settings/mod.woobie, logs/CONTENTS, misc/addpatch,
misc/killwhitespace, misc/makedepend, misc/modconfig,
misc/newversion, misc/releaseprep, misc/runautotools,
scripts/CONTENTS, scripts/action.fix.tcl, scripts/alltools.tcl,
scripts/compat.tcl, scripts/ques5.tcl, src/Makefile.in, src/bg.c,
src/bg.h, src/botcmd.c, src/botmsg.c, src/botnet.c, src/chan.h,
src/chanprog.c, src/cmds.c, src/cmdt.h, src/dcc.c, src/dccutil.c,
src/dns.c, src/dns.h, src/eggdrop.h, src/flags.c, src/flags.h,
src/lang.h, src/language.c, src/main.c, src/main.h, src/mem.c,
src/misc.c, src/misc_file.c, src/misc_file.h, src/modules.c,
src/modules.h, src/net.c, src/patch.h, src/proto.h,
src/rfc1459.c, src/stat.h, src/tandem.h, src/tcl.c, src/tcldcc.c,
src/tclegg.h, src/tclhash.c, src/tclhash.h, src/tclmisc.c,
src/tcluser.c, src/userent.c, src/userrec.c, src/users.c,
src/users.h, src/compat/compat.h, src/compat/inet_aton.c,
src/compat/inet_aton.h, src/compat/memcpy.c, src/compat/memcpy.h,
src/compat/memset.c, src/compat/memset.h, src/compat/snprintf.c,
src/compat/snprintf.h, src/compat/strcasecmp.c,
src/compat/strcasecmp.h, src/compat/strftime.c,
src/compat/strftime.h, src/mod/module.h, src/mod/modvals.h,
src/mod/assoc.mod/assoc.c, src/mod/assoc.mod/assoc.h,
src/mod/blowfish.mod/bf_tab.h, src/mod/blowfish.mod/blowfish.c,
src/mod/blowfish.mod/blowfish.h, src/mod/channels.mod/channels.c,
src/mod/channels.mod/channels.h, src/mod/channels.mod/cmdschan.c,
src/mod/channels.mod/tclchan.c, src/mod/channels.mod/udefchan.c,
src/mod/channels.mod/userchan.c, src/mod/compress.mod/compress.c,
src/mod/compress.mod/compress.h, src/mod/compress.mod/configure,
src/mod/compress.mod/configure.ac,
src/mod/compress.mod/tclcompress.c,
src/mod/console.mod/console.c, src/mod/console.mod/console.h,
src/mod/ctcp.mod/ctcp.c, src/mod/ctcp.mod/ctcp.h,
src/mod/dns.mod/configure, src/mod/dns.mod/configure.ac,
src/mod/dns.mod/coredns.c, src/mod/dns.mod/dns.c,
src/mod/dns.mod/dns.h, src/mod/filesys.mod/dbcompat.c,
src/mod/filesys.mod/dbcompat.h, src/mod/filesys.mod/filedb3.c,
src/mod/filesys.mod/filedb3.h, src/mod/filesys.mod/filelist.c,
src/mod/filesys.mod/filelist.h, src/mod/filesys.mod/files.c,
src/mod/filesys.mod/files.h, src/mod/filesys.mod/filesys.c,
src/mod/filesys.mod/filesys.h, src/mod/filesys.mod/tclfiles.c,
src/mod/irc.mod/chan.c, src/mod/irc.mod/cmdsirc.c,
src/mod/irc.mod/irc.c, src/mod/irc.mod/irc.h,
src/mod/irc.mod/mode.c, src/mod/irc.mod/msgcmds.c,
src/mod/irc.mod/tclirc.c, src/mod/notes.mod/cmdsnote.c,
src/mod/notes.mod/notes.c, src/mod/notes.mod/notes.h,
src/mod/seen.mod/seen.c, src/mod/server.mod/cmdsserv.c,
src/mod/server.mod/server.c, src/mod/server.mod/server.h,
src/mod/server.mod/servmsg.c, src/mod/server.mod/tclserv.c,
src/mod/share.mod/share.c, src/mod/share.mod/share.h,
src/mod/share.mod/uf_features.c,
src/mod/transfer.mod/tcltransfer.c,
src/mod/transfer.mod/transfer.c, src/mod/transfer.mod/transfer.h,
src/mod/transfer.mod/transferfstat.c,
src/mod/transfer.mod/transferqueue.c,
src/mod/uptime.mod/uptime.c, src/mod/uptime.mod/uptime.h,
src/mod/wire.mod/wire.c, src/mod/wire.mod/wire.h,
src/mod/woobie.mod/woobie.c, text/CONTENTS, text/banner: *
Copyright updates.
2006-03-27 00:48 wcc
* CONTENTS, COPYING, FEATURES, INSTALL, NEWS, README, aclocal.m4,
configure, configure.ac, doc/ABOUT, doc/AUTHORS, doc/BANS,
doc/BOTNET, doc/COMPILE-GUIDE, doc/CONTENTS, doc/FIRST-SCRIPT,
doc/KNOWN-PROBLEMS, doc/MODULES, doc/PARTYLINE, doc/PATCH-HOWTO,
doc/TEXT-SUBSTITUTIONS, doc/TRICKS, doc/USERS,
doc/WEIRD-MESSAGES, doc/tcl-commands.doc, doc/html/about.html,
doc/html/app-problems.html, doc/html/app-textsub.html,
doc/html/app-tricks.html, doc/html/app-weird.html,
doc/html/authors.html, doc/html/bans.html, doc/html/botnet.html,
doc/html/compiling.html, doc/html/egg-core.html,
doc/html/faqs.html, doc/html/features.html, doc/html/index.html,
doc/html/install.html, doc/html/mod-assoc.html,
doc/html/mod-blowfish.html, doc/html/mod-channels.html,
doc/html/mod-compress.html, doc/html/mod-console.html,
doc/html/mod-ctcp.html, doc/html/mod-dns.html,
doc/html/mod-filesys.html, doc/html/mod-irc.html,
doc/html/mod-notes.html, doc/html/mod-seen.html,
doc/html/mod-server.html, doc/html/mod-share.html,
doc/html/mod-uptime.html, doc/html/mod-wire.html,
doc/html/mod-woobie.html, doc/html/news.html,
doc/html/party.html, doc/html/patch-howto.html,
doc/html/readme.html, doc/html/starting.html,
doc/html/tcl-commands.html, doc/html/users.html,
doc/man1/eggdrop.1: * 2006 copyright updates (finally).
2005-12-09 03:29 wcc
* configure, src/compat/Makefile.in, src/md5/Makefile.in,
src/mod/assoc.mod/Makefile, src/mod/blowfish.mod/Makefile,
src/mod/channels.mod/Makefile, src/mod/compress.mod/Makefile.in,
src/mod/console.mod/Makefile, src/mod/ctcp.mod/Makefile,
src/mod/dns.mod/Makefile.in, src/mod/filesys.mod/Makefile,
src/mod/irc.mod/Makefile, src/mod/notes.mod/Makefile,
src/mod/seen.mod/Makefile, src/mod/server.mod/Makefile,
src/mod/share.mod/Makefile, src/mod/transfer.mod/Makefile,
src/mod/uptime.mod/Makefile, src/mod/wire.mod/Makefile,
src/mod/woobie.mod/Makefile: * Ran misc/runautotools and
misc/makedepend.
2005-12-09 03:24 wcc
* aclocal.m4, configure.ac, src/patch.h: * Fixed a few spelling
errors in ./configure. Thanks to shortybsd@EFnet.
2005-12-01 15:51 wcc
* doc/UPDATES1.6, src/patch.h, src/compat/snprintf.c: * Fixed a
type conversion problem in snprintf.c causing Eggdrop to not
compile on OSF1. * Found by: Joker - Patch by: Wcc
2005-11-28 11:23 wcc
* src/: dcc.c, patch.h: * Small code-formatting fix... was bugging
me.
2005-11-17 12:03 wcc
* src/patch.h: * Ooops, accidentially committed some "cleanups"
changes I forgot I had made :). This was just fixing a few
minor little things that appear to have been accidentially
reverted when Toth's notes changes went in.
2005-11-17 11:58 wcc
* doc/UPDATES1.6, src/botmsg.c, src/flags.c, src/patch.h,
src/tcl.c, src/tclegg.h, src/tclhash.c, src/users.c,
src/mod/irc.mod/tclirc.c, src/mod/server.mod/server.c: * WTF is
Max OS?
2005-11-16 23:21 tothwolf
* src/tclhash.c: * Synchronized working tree tclhash.c with CVS. *
Removed redundant Tcl_SetVar() lastbind that was from a submitted
patch.
2005-11-14 22:56 wcc
* src/patch.h: * Grr; forgot patch.h.
2005-11-14 22:52 wcc
* configure, src/mod/compress.mod/configure,
src/mod/dns.mod/configure: * Looks like I forgot to run
misc/runautotools. EggCheck to the rescue again!
2005-10-20 20:56 wcc
* configure.ac, doc/UPDATES1.6, src/patch.h: - Detect NetBSD Tcl in
/usr/pkg/lib and /usr/pkg/include. * Found by: mish - Patch by:
Wcc
Thanks mish :)
2005-10-15 19:03 wcc
* doc/html/egg-core.html, doc/html/mod-server.html, src/patch.h: *
No ' in HTML docs! :)
2005-09-04 22:38 wcc
* language/core.danish.lang, language/core.english.lang,
language/core.french.lang, language/core.german.lang, src/main.c,
src/patch.h: * Fixed the stagnant-module warning in main.c from
possibly not displaying if uptime or encryption are last in the
module list. * We had two variables named 'xx' in main(). Not a
good idea. I don't like single-letter variable names anyway...
makes things unclear.
2005-09-04 13:53 wcc
* doc/UPDATES1.6, src/botnet.c, src/patch.h: - Fixed possibility of
referencing a NULL pointer in rembot(). * Patch by: lordares
2005-08-31 21:23 wcc
* src/: patch.h, mod/server.mod/server.c: - A couple of cleanups in
ctcp_DCC_CHAT(). * Patch by: lordares
2005-08-29 20:52 wcc
* src/: patch.h, mod/irc.mod/cmdsirc.c: - No need to fill the
buffers at the end of the cmd_[de]voice() functions. * Patch by:
lordares
2005-08-29 18:44 wcc
* doc/UPDATES1.6, src/eggdrop.h, src/patch.h: - Added a missing
param cast for dcc_table.timeout. * Patch by: lordares
2005-08-29 00:16 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/channels.mod/channels.c: -
Fixed a memleak / other nasty stuff when MODES_PER_LINE_MAX != 6.
* Patch by: lordares
2005-08-28 23:48 wcc
* doc/UPDATES1.6, src/dcc.c, src/patch.h: - Fixed putlog() of an
uninitialized (and incorrect) variable in
dcc_telnet_hostresolved(). * Patch by: lordares
2005-08-28 23:39 wcc
* misc/killwhitespace, src/botcmd.c, src/tclhash.c,
src/compat/strftime.h, src/mod/channels.mod/cmdschan.c,
src/mod/channels.mod/tclchan.c,
src/mod/compress.mod/tclcompress.c,
src/mod/filesys.mod/filesys.c, src/mod/irc.mod/tclirc.c,
src/mod/server.mod/servmsg.c, src/mod/transfer.mod/tcltransfer.c,
src/mod/transfer.mod/transfer.c: * Added and ran
misc/killwhitespace.
2005-08-28 22:51 wcc
* eggdrop.conf, doc/html/egg-core.html, doc/settings/core.settings,
help/set/cmds1.help, src/patch.h: * More doc synching.
2005-08-28 22:45 wcc
* eggdrop.conf, doc/html/egg-core.html, doc/settings/core.settings,
help/set/cmds1.help, src/patch.h: * Backported a couple of doc
changes from 1.7.
2005-08-20 16:27 wcc
* doc/UPDATES1.6, src/main.c, src/patch.h,
src/mod/uptime.mod/uptime.c: * UPDATES entry for dns.mod Mac OS X
fix... it appears to fix the problem. Thanks to Netscrape @
EFNet for testing this out. Apparently we still have some
problems with the latest OS X betas in channels.mod, but I'll
send a separate e-mail about that soon. * Use newsplit() instead
of splitc(.., ' ') in uptime.mod for consistency. This also
stops some valgrind bitching =P.
2005-08-15 21:11 wcc
* config.h.in, configure, src/patch.h: * Ran misc/runautotools.
2005-08-15 21:09 wcc
* aclocal.m4: * dns.mod should work on Mac OS X now. This will get
a changelog entry and stuff once it is a verified fix.
2005-07-31 12:37 wcc
* eggdrop.conf, doc/UPDATES1.6, doc/html/egg-core.html,
doc/settings/core.settings, help/set/cmds1.help, src/patch.h,
src/mod/server.mod/servmsg.c: - Corrected nat-ip setting
documentation. * Found by: BarkerJr - Patch by: Wcc
2005-07-31 02:23 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/server.mod/servmsg.c: Rest
of patch... oops.
- Don't allow realname to be blank or whitespace. * Found by:
Jesse M - Patch by: BarkerJr / Wcc
2005-07-31 02:01 wcc
* eggdrop.conf, src/patch.h, src/mod/channels.mod/tclchan.c,
src/mod/server.mod/servmsg.c: * Fixed previous commit so it won't
break scripts. Thanks to lordares.
2005-07-31 01:32 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/channels.mod/tclchan.c: -
Fixed an error in channel get. You can now, correctly, do a
channel get #channel stopnethack-mode. * Found by: Chris
Northwood - Patch by: Wcc
2005-07-30 21:23 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/irc.mod/mode.c: - The
pushmode command should work properly for bans now. * Patch by:
thommey
TEST ME.
2005-07-30 21:18 wcc
* doc/UPDATES1.6, src/patch.h, src/tclhash.c: - Apparently we broke
lastbind. * Found by: bUrN - Patch by: thommey
2005-07-23 17:13 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/irc.mod/irc.c: - Request
topic on channel reset. * Found by: De Kus - Patch by: Darko
2005-05-30 17:44 wcc
* src/patch.h: * Forgot patch.h...
2005-05-30 17:43 wcc
* doc/UPDATES1.6, src/mod/share.mod/share.c: - Fixed a situation
where noshare could be set to 1 and never restored. * Fixed
by: lordares
Someone please test this or at least look over it more carefully.
We don't want another "AHH ALL MY USERS LOST THEIR GLOBAL FLAGS"
sharing bug.
2005-05-30 17:09 wcc
* doc/UPDATES1.6, src/net.c, src/patch.h: - Fixed a socklist leak
in net.c. * Fixed by: lordares
2005-04-15 22:01 wcc
* doc/UPDATES1.6, src/dns.c, src/main.c, src/net.c, src/patch.h: -
Hopefully fixed dns lockups. * Found by: various - Patch by:
Sven Trenkel
2005-02-08 10:30 tothwolf
* README, doc/html/readme.html: * Who??? Robey, thats who! :P
2005-02-08 10:13 tothwolf
* doc/UPDATES1.6, src/botmsg.c, src/patch.h: - Fixed remote note
bug in add_note() that was introduced in 1.6.17. Fixes
Bugzilla Bug # 433 "Remote Notes Always Say User is Offline" *
Found by: alex323 - Patch by: Tothwolf
2005-02-08 00:51 tothwolf
* src/net.c: - Corrected missing part of the copyright for net.c.
2005-02-07 19:09 tothwolf
* src/patch.h: - Probably should run misc/addpatch...
2005-02-07 19:08 tothwolf
* doc/UPDATES1.6, src/cmds.c, src/cmdt.h, src/dccutil.c,
src/main.h, src/proto.h, src/tcl.c, src/tclegg.h, src/tclhash.c,
src/tclhash.h, src/mod/filesys.mod/filesys.c: - Completely
rewrote check_tcl_bind(). - Added inline check_bind_flags() for
flag checking for check_tcl_bind(). - Added inline
check_bind_match() for match checking for check_tcl_bind(). -
Rewrote trigger_bind() and made it inline for check_tcl_bind().
- Fixed pointless calling of nmalloc() and nfree() for
ContextNote in trigger_bind() when DEBUG_CONTEXT isn't defined.
- Moved findidx() from tcl.c to dccutil.c. - Moved findanyidx()
from tclhash.c to dccutil.c. - Moved CHECKVALIDITY from
tclhash.h to tclegg.h. - Added CHECKVALIDITY checks to
builtin_dcc() and builtin_fil(). - Moved CMD_LEAVE from cmdt.h
to tclegg.h. - Changed NULL to CMD_LEAVE for partyline quit in
cmds.c. - Renamed BIND_EXEC_BRK to BIND_QUIT. - Fixed misc
typos. * Patch by: Tothwolf
2005-02-07 18:14 tothwolf
* src/net.c: - Corrected copyright header for net.c. (I thought
I did this years ago when I did all the others...)
2005-02-04 08:15 tothwolf
* eggdrop.conf, doc/UPDATES1.6, doc/tcl-commands.doc,
doc/html/mod-server.html, doc/html/tcl-commands.html,
doc/settings/mod.server, src/patch.h, src/tclegg.h,
src/tclhash.c, src/mod/irc.mod/chan.c, src/mod/irc.mod/irc.c,
src/mod/irc.mod/irc.h, src/mod/server.mod/server.c,
src/mod/server.mod/server.h, src/mod/server.mod/servmsg.c,
src/mod/server.mod/help/server.help,
src/mod/server.mod/help/set/server.help: - Added support to MSGM,
PUBM, NOTC, and WALL binds to support bound procs returning 1
to prevent logging of the trigger message text. Fixes Bugzilla
Bug # 334 "msgm bind return values" - Added BIND_STACKRET bit
mask and support for stacked bind return values to
check_tcl_bind(). This allows check_tcl_bind() to check if any
stacked bound procs return 1 while allowing all matching stacked
binds to be processed. Previously if BIND_WANTRET was used to
check the return value of stacked binds, only the first match
would be triggered. - Modified irc.mod gotmsg() function to
trigger PUBM binds before triggering PUB binds. MSGM and MSG
binds already worked this way. - Modified irc.mod gotmsg()
function to allow a message to trigger both PUBM and PUB binds.
Previously if a message triggered a PUB bind, any PUBM binds
that might match the message text would not be triggered.
Fixes Bugzilla Bug # 351 "bind pub hogs pubm" - Added
exclusive-binds setting and code to gotmsg() functions to allow
MSGM and PUBM binds to be exclusive of MSG and PUB binds. -
Fixed logging for WALL bind. It had been broken since it was
originally implemented in eggdrop-hayes. Wallops messages were
always logged regardless of the return value of a bound proc.
Returning '1' from a bound proc now causes Eggdrop to not log
the Wallops message. * Patch by: Tothwolf
2005-02-03 12:18 tothwolf
* configure: * Odd...
2005-02-03 12:13 tothwolf
* configure: * Regenerated configure script.
2005-02-03 12:07 tothwolf
* configure.ac, doc/UPDATES1.6, src/patch.h: - Check for Tcl 8.5
before older versions. * Patch by: Tothwolf
2005-02-03 09:34 tothwolf
* doc/UPDATES1.6, src/flags.c, src/misc.c, src/tclhash.c,
src/mod/irc.mod/chan.c, src/mod/server.mod/servmsg.c: - Use
flagrec_eq() instead of flagrec_ok() in help_subst() since
lower flags are automatically added now. * Patch by: Tothwolf
- Check for bot's nick and user@host earlier in detect_flood()
and detect_chan_flood(). * Patch by: Tothwolf
2005-02-02 10:53 tothwolf
* eggdrop.conf: * Don't load compat.tcl by default in example
eggdrop.conf.
2005-02-02 09:32 tothwolf
* doc/: tcl-commands.doc, html/tcl-commands.html: * More
documentation corrections.
2005-02-01 18:02 tothwolf
* doc/UPDATES1.6, doc/tcl-commands.doc, doc/html/tcl-commands.html,
src/patch.h, src/tclegg.h, src/tclhash.c: - Allow wildcard
matching and stacking for note binds. (I thought this was
fixed 5 years ago...) * Patch by: Tothwolf
2005-01-27 21:26 wcc
* FEATURES, doc/man1/eggdrop.1, scripts/action.fix.tcl,
scripts/ques5.tcl, src/main.c, src/patch.h: * A couple more
Copyright updates.
2005-01-25 12:08 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/irc.mod/chan.c: - Use
CHANMETA to define valid channel prefixes in gotmsg(). * Found
by: zathras3 at hotmail.com - Patch by: Wcc
2005-01-22 01:22 wcc
* doc/UPDATES1.6, src/patch.h, src/mod/channels.mod/channels.c: -
Fix for problems created when loading long user-defined channel
setting names from the channel file. * Patch by: Stream
2005-01-20 15:03 wcc
* doc/UPDATES1.6, help/cmds2.help, src/patch.h: - Help file update
related to sharing. * Patch by: Shawn888, slennox
2005-01-20 14:50 wcc
* config.h.in, configure, src/patch.h: * Ran misc/runautotools.
2005-01-20 14:45 wcc
* aclocal.m4, doc/UPDATES1.6, src/main.h, src/patch.h: - Fix for
randint() on Solaris / SunOS. * Patch by: Mikael Hedberg
2005-01-06 20:25 tothwolf
* doc/: tcl-commands.doc, html/tcl-commands.html: * Corrections to
MODE binding documentation.
2005-01-03 14:03 paladin
* configure, src/mod/compress.mod/configure,
src/mod/dns.mod/configure: Run misc/runautotools because of
changes to aclocal.m4 and configure.ac files
2005-01-03 14:01 paladin
* CONTENTS, INSTALL, NEWS, README, aclocal.m4, configure,
configure.ac, doc/ABOUT, doc/AUTHORS, doc/BANS, doc/BOTNET,
doc/COMPILE-GUIDE, doc/CONTENTS, doc/FIRST-SCRIPT,
doc/KNOWN-PROBLEMS, doc/MODULES, doc/PARTYLINE, doc/PATCH-HOWTO,
doc/TEXT-SUBSTITUTIONS, doc/TRICKS, doc/UPDATES1.6, doc/USERS,
doc/WEIRD-MESSAGES, doc/tcl-commands.doc, doc/html/about.html,
doc/html/app-problems.html, doc/html/app-textsub.html,
doc/html/app-tricks.html, doc/html/app-weird.html,
doc/html/authors.html, doc/html/bans.html, doc/html/botnet.html,
doc/html/compiling.html, doc/html/egg-core.html,
doc/html/faqs.html, doc/html/features.html, doc/html/index.html,
doc/html/install.html, doc/html/mod-assoc.html,
doc/html/mod-blowfish.html, doc/html/mod-channels.html,
doc/html/mod-compress.html, doc/html/mod-console.html,
doc/html/mod-ctcp.html, doc/html/mod-dns.html,
doc/html/mod-filesys.html, doc/html/mod-irc.html,
doc/html/mod-notes.html, doc/html/mod-seen.html,
doc/html/mod-server.html, doc/html/mod-share.html,
doc/html/mod-uptime.html, doc/html/mod-wire.html,
doc/html/mod-woobie.html, doc/html/news.html,
doc/html/party.html, doc/html/patch-howto.html,
doc/html/readme.html, doc/html/starting.html,
doc/html/tcl-commands.html, doc/html/users.html,
doc/man1/eggdrop.1, doc/settings/CONTENTS,
doc/settings/core.settings, doc/settings/mod.assoc,
doc/settings/mod.blowfish, doc/settings/mod.channels,
doc/settings/mod.compress, doc/settings/mod.console,
doc/settings/mod.ctcp, doc/settings/mod.dns,
doc/settings/mod.filesys, doc/settings/mod.irc,
doc/settings/mod.notes, doc/settings/mod.seen,
doc/settings/mod.server, doc/settings/mod.share,
doc/settings/mod.transfer, doc/settings/mod.uptime,
doc/settings/mod.wire, doc/settings/mod.woobie, logs/CONTENTS,
misc/addpatch, misc/makedepend, misc/modconfig, misc/newversion,
misc/releaseprep, misc/runautotools, scripts/CONTENTS,
scripts/alltools.tcl, scripts/compat.tcl, scripts/ques5.tcl,
src/bg.c, src/bg.h, src/botcmd.c, src/botmsg.c, src/botnet.c,
src/chan.h, src/chanprog.c, src/cmds.c, src/cmdt.h, src/dcc.c,
src/dccutil.c, src/dns.c, src/dns.h, src/eggdrop.h, src/flags.c,
src/flags.h, src/lang.h, src/language.c, src/main.c, src/main.h,
src/mem.c, src/misc.c, src/misc_file.c, src/misc_file.h,
src/modules.c, src/modules.h, src/patch.h, src/proto.h,
src/rfc1459.c, src/stat.h, src/tandem.h, src/tcl.c, src/tcldcc.c,
src/tclegg.h, src/tclhash.c, src/tclhash.h, src/tclmisc.c,
src/tcluser.c, src/userent.c, src/userrec.c, src/users.c,
src/users.h, src/compat/compat.h, src/compat/inet_aton.c,
src/compat/inet_aton.h, src/compat/memcpy.c, src/compat/memcpy.h,
src/compat/memset.c, src/compat/memset.h, src/compat/snprintf.c,
src/compat/snprintf.h, src/compat/strcasecmp.c,
src/compat/strcasecmp.h, src/compat/strftime.c,
src/compat/strftime.h, src/mod/module.h, src/mod/modvals.h,
src/mod/assoc.mod/assoc.c, src/mod/assoc.mod/assoc.h,
src/mod/blowfish.mod/bf_tab.h, src/mod/blowfish.mod/blowfish.c,
src/mod/blowfish.mod/blowfish.h, src/mod/channels.mod/channels.c,
src/mod/channels.mod/channels.h, src/mod/channels.mod/cmdschan.c,
src/mod/channels.mod/tclchan.c, src/mod/channels.mod/udefchan.c,
src/mod/channels.mod/userchan.c, src/mod/compress.mod/compress.c,
src/mod/compress.mod/compress.h, src/mod/compress.mod/configure,
src/mod/compress.mod/configure.ac,
src/mod/compress.mod/tclcompress.c,
src/mod/console.mod/console.c, src/mod/console.mod/console.h,
src/mod/ctcp.mod/ctcp.c, src/mod/ctcp.mod/ctcp.h,
src/mod/dns.mod/configure, src/mod/dns.mod/configure.ac,
src/mod/dns.mod/coredns.c, src/mod/dns.mod/dns.c,
src/mod/dns.mod/dns.h, src/mod/filesys.mod/dbcompat.c,
src/mod/filesys.mod/dbcompat.h, src/mod/filesys.mod/filedb3.c,
src/mod/filesys.mod/filedb3.h, src/mod/filesys.mod/filelist.c,
src/mod/filesys.mod/filelist.h, src/mod/filesys.mod/files.c,
src/mod/filesys.mod/files.h, src/mod/filesys.mod/filesys.c,
src/mod/filesys.mod/filesys.h, src/mod/filesys.mod/tclfiles.c,
src/mod/irc.mod/chan.c, src/mod/irc.mod/cmdsirc.c,
src/mod/irc.mod/irc.c, src/mod/irc.mod/irc.h,
src/mod/irc.mod/mode.c, src/mod/irc.mod/msgcmds.c,
src/mod/irc.mod/tclirc.c, src/mod/notes.mod/cmdsnote.c,
src/mod/notes.mod/notes.c, src/mod/notes.mod/notes.h,
src/mod/seen.mod/seen.c, src/mod/server.mod/cmdsserv.c,
src/mod/server.mod/server.c, src/mod/server.mod/server.h,
src/mod/server.mod/servmsg.c, src/mod/server.mod/tclserv.c,
src/mod/share.mod/share.c, src/mod/share.mod/share.h,
src/mod/share.mod/uf_features.c,
src/mod/transfer.mod/tcltransfer.c,
src/mod/transfer.mod/transfer.c, src/mod/transfer.mod/transfer.h,
src/mod/transfer.mod/transferfstat.c,
src/mod/transfer.mod/transferqueue.c,
src/mod/uptime.mod/uptime.c, src/mod/uptime.mod/uptime.h,
src/mod/wire.mod/wire.c, src/mod/wire.mod/wire.h,
src/mod/woobie.mod/woobie.c, text/CONTENTS, text/banner: -
Updated Copyright Dates * Patch by: Paladin
2004-12-10 22:23 wcc