Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Changelog - git.busybox.net/busybox.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 65b9f0f971c673129aa1ce671f114fb59de26330 (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
---------------------
PatchSet 3826 
Date: 2003/12/23 09:12:09
Author: andersen
Branch: HEAD
Tag: busybox_1_00_pre5 
Log:
Prepare for release

Members: 
	Changelog:1.285->1.286 
	docs/busybox.net/news.html:1.4->1.5 
	docs/busybox.net/oldnews.html:1.18->1.19 

---------------------
PatchSet 3827 
Date: 2003/12/23 10:00:00
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Show the news by default

Members: 
	docs/busybox.net/about.html:INITIAL->1.1 
	docs/busybox.net/header.html:1.5->1.6 
	docs/busybox.net/index.html:1.133->1.134 

---------------------
PatchSet 3828 
Date: 2003/12/23 20:24:51
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Cmdedit update from Vladimir N. Oleynik (vodz)

Members: 
	shell/cmdedit.c:1.83->1.84 

---------------------
PatchSet 3829 
Date: 2003/12/23 20:37:23
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
don't mess up errno

Members: 
	libbb/xconnect.c:1.9->1.10 

---------------------
PatchSet 3830 
Date: 2003/12/23 20:37:54
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
fix broken formatting

Members: 
	libbb/xconnect.c:1.10->1.11 

---------------------
PatchSet 3831 
Date: 2003/12/23 20:45:14
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Match changes made to cmdedit

Members: 
	editors/vi.c:1.29->1.30 

---------------------
PatchSet 3832 
Date: 2003/12/23 20:47:22
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
match changes made to cmdedit

Members: 
	util-linux/more.c:1.58->1.59 

---------------------
PatchSet 3833 
Date: 2003/12/24 06:02:10
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Patch from Ned Ludd, solar at gentoo dot org:

I had previously provided you with a patch to help complete busybox's
props suite, but have heard no word back. Sense then I've made use of as
many of busybox's native API settings as I could find and would really
love for you to include support for this. If there is something more I
need to do to get this supported added in please let me know.

Members: 
	include/applets.h:1.109->1.110 
	include/usage.h:1.181->1.182 
	procps/Config.in:1.7->1.8 
	procps/Makefile.in:1.4->1.5 
	procps/sysctl.c:INITIAL->1.1 

---------------------
PatchSet 3834 
Date: 2003/12/24 19:30:27
Author: russ
Branch: HEAD
Tag: (none) 
Log:
move debugging to safe place (before vfork)

Members: 
	networking/udhcp/script.c:1.9->1.10 

---------------------
PatchSet 3835 
Date: 2003/12/24 19:56:58
Author: russ
Branch: HEAD
Tag: (none) 
Log:
fix a long standing underallocation bug

Members: 
	networking/udhcp/script.c:1.10->1.11 

---------------------
PatchSet 3836 
Date: 2003/12/24 20:30:45
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
re-indent

Members: 
	modutils/insmod.c:1.108->1.109 
	modutils/modprobe.c:1.24->1.25 
	modutils/rmmod.c:1.25->1.26 

---------------------
PatchSet 3837 
Date: 2003/12/26 02:19:34
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Vodz last_patch120, more busybox integration, saves 330 Bytes. Tested.

Members: 
	procps/sysctl.c:1.1->1.2 

---------------------
PatchSet 3838 
Date: 2003/12/26 14:01:36
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Isolate code better for unused options, config option to enable long
options, add some conditions to the tar tests in testsuite.

Members: 
	archival/Config.in:1.12->1.13 
	archival/tar.c:1.185->1.186 
	include/usage.h:1.182->1.183 
	testsuite/tar/tar-handles-cz-options:1.2->1.3 
	testsuite/tar/tar-handles-empty-include-and-non-empty-exclude-list:1.3->1.4 
	testsuite/tar/tar-handles-exclude-and-extract-lists:1.3->1.4 
	testsuite/tar/tar-handles-multiple-X-options:1.1->1.2 
	testsuite/tar/tar-handles-nested-exclude:1.3->1.4 

---------------------
PatchSet 3839 
Date: 2003/12/26 23:41:28
Author: russ
Branch: HEAD
Tag: (none) 
Log:
it should work even if you don't assign a pidfile

Members: 
	networking/udhcp/common.c:1.4->1.5 

---------------------
PatchSet 3840 
Date: 2003/12/27 00:21:47
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Fix a bug of mine, identified by Stephane Billiart

Members: 
	networking/wget.c:1.63->1.64 

---------------------
PatchSet 3841 
Date: 2003/12/28 05:02:40
Author: timr
Branch: HEAD
Tag: (none) 
Log:
ws, show date setting format

Members: 
	include/usage.h:1.183->1.184 

---------------------
PatchSet 3842 
Date: 2003/12/28 05:06:56
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Update example slightly

Members: 
	include/usage.h:1.184->1.185 

---------------------
PatchSet 3843 
Date: 2003/12/31 23:10:44
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Batch from Bastian Blank to fix debian bug #216435;
When linking a non existing file busybox ln will report the target
missind and not the source:

Members: 
	coreutils/ln.c:1.42->1.43 

---------------------
PatchSet 3844 
Date: 2003/12/31 23:20:10
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Fix debian bug #215612, insmod should be silent on request

Members: 
	modutils/insmod.c:1.109->1.110 

---------------------
PatchSet 3845 
Date: 2004/01/01 00:23:01
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Sync to waldi's subversion archive

Members: 
	debian/README.debian:1.2->1.3(DEAD) 
	debian/changelog:1.38->1.39 
	debian/compat:INITIAL->1.1 
	debian/config-deb:1.10->1.11 
	debian/config-floppy-udeb-linux:INITIAL->1.1 
	debian/config-static:1.13->1.14 
	debian/config-udeb:1.17->1.18 
	debian/config-udeb-linux:INITIAL->1.1 
	debian/config-udeb-linux-i386:1.3->1.4(DEAD) 
	debian/control:1.18->1.19 
	debian/control-extract:INITIAL->1.1 
	debian/copyright:1.4->1.5 
	debian/rules:1.24->1.25 

---------------------
PatchSet 3846 
Date: 2004/01/02 09:08:45
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Add some details on exactly how to comply with the GPL
 -Erik

Members: 
	docs/busybox.net/header.html:1.6->1.7 
	docs/busybox.net/license.html:INITIAL->1.1 
	docs/busybox.net/shame.html:1.3->1.4 

---------------------
PatchSet 3847 
Date: 2004/01/02 10:07:40
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
fixes from Selwyn Tang

Members: 
	docs/busybox.net/license.html:1.1->1.2 

---------------------
PatchSet 3848 
Date: 2004/01/03 12:07:32
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Declare dependencies of command line editing in the build system

Members: 
	shell/Config.in:1.11->1.12 
	shell/cmdedit.c:1.84->1.85 

---------------------
PatchSet 3849 
Date: 2004/01/04 06:42:14
Author: landley
Branch: HEAD
Tag: (none) 
Log:

Thinko in s//options.  (Whitespace skipping in the wrong place.)

Members: 
	editors/sed.c:1.157->1.158 

---------------------
PatchSet 3850 
Date: 2004/01/04 10:28:22
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Use bb_getopt_ulflags, saves some space, better argument checking.
Remove ar specific extraction code, always use common extraction code.

Members: 
	archival/ar.c:1.46->1.47 

---------------------
PatchSet 3851 
Date: 2004/01/04 11:06:34
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Fix usage with libraries, skip symbol table.

Members: 
	archival/libunarchive/get_header_ar.c:1.7->1.8 

---------------------
PatchSet 3852 
Date: 2004/01/05 11:49:55
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Use bb_getopt_ulflags, simplify some logic, saves some bytes.

Members: 
	archival/bunzip2.c:1.16->1.17 

---------------------
PatchSet 3853 
Date: 2004/01/05 12:35:05
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Use bb_getopt_ulflags, save 150 bytes.

Members: 
	archival/gunzip.c:1.77->1.78 

---------------------
PatchSet 3854 
Date: 2004/01/05 23:49:37
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Fix broken #else

Members: 
	modutils/insmod.c:1.110->1.111 

---------------------
PatchSet 3855 
Date: 2004/01/06 00:07:17
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Woody Suwalski writes:

accept more then 1 dependency per modules.dep line. Also white space cleanup...
I think that parsing still breaks sometimes, but is mostly functional now.

Members: 
	modutils/modprobe.c:1.25->1.26 

---------------------
PatchSet 3856 
Date: 2004/01/07 09:24:06
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Use bb_getopt_ulflags, save 100 bytes and strict argument checking.

Members: 
	archival/dpkg_deb.c:1.30->1.31 

---------------------
PatchSet 3857 
Date: 2004/01/08 10:51:09
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch from Bastian Blank to fix debian bug #226722, test case:
 mkdir foo
 touch foo/bar
 ln -s bar foo/baz

Members: 
	coreutils/ln.c:1.43->1.44 

---------------------
PatchSet 3858 
Date: 2004/01/10 11:25:53
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Woody Suwalski writes:

I have found the problem in modprobe, so here is the promised patch
At the current stage I can use it as modprobe while switching between
2.4 and 2.6 seemlesly...(that is good!)

Members: 
	modutils/modprobe.c:1.26->1.27 

---------------------
PatchSet 3859 
Date: 2004/01/10 11:29:31
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
whitespace cleanup

Members: 
	modutils/modprobe.c:1.27->1.28 

---------------------
PatchSet 3860 
Date: 2004/01/11 05:20:59
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch from Matt Kraai to fix debian bug #227081

cp does not truncate existing destinations.  That is, after
running

 echo foo > foo
 echo fubar > fubar
 cp foo fubar

the contents of fubar are

 foo
 r

instead of

 foo

Members: 
	libbb/copy_file.c:1.27->1.28 

---------------------
PatchSet 3861 
Date: 2004/01/13 10:12:16
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch by Tito, remove some unneeded variables to save some space.

Members: 
	console-tools/openvt.c:1.6->1.7 

---------------------
PatchSet 3862 
Date: 2004/01/13 10:19:37
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Vodz last_patch_121, syncing with dash_0.4.19, reduce code size.

Members: 
	shell/ash.c:1.84->1.85 

---------------------
PatchSet 3863 
Date: 2004/01/13 10:57:32
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch from Bastian Blank, allow the buildtime to be overriden with a
different string, used by the debian busybox-cvs to specify the debian
date based version number.

Members: 
	include/busybox.h:1.53->1.54 
	scripts/config/confdata.c:1.4->1.5 

---------------------
PatchSet 3864 
Date: 2004/01/13 11:39:22
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Fix a bug where mount could check the wrong device.  st_rdev is the correct
device ID iff the named file is a character or block special device.  Otherwise
it is meaningless junk, in which case st_dev should be used.  This was done
incorrectly, which could cause mount to display bogus mount info.
 -Erik

Members: 
	libbb/find_root_device.c:1.10->1.11 

---------------------
PatchSet 3865 
Date: 2004/01/14 07:34:37
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch by Tito, use bb_xgetlarg, reduce size

Members: 
	console-tools/chvt.c:1.20->1.21 

---------------------
PatchSet 3866 
Date: 2004/01/14 09:34:50
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Vodz last_patch_122, Check $PATH at runtime to fix tab completion

Members: 
	shell/ash.c:1.85->1.86 
	shell/cmdedit.c:1.85->1.86 
	shell/cmdedit.h:1.14->1.15 

---------------------
PatchSet 3867 
Date: 2004/01/15 11:50:17
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch by Tito, reduce size of deallocvt, also make the usage message
clearer (from N to [N]) and indirectly (through bb_xgetlarg) adds support
for  -h ;-)

Members: 
	console-tools/deallocvt.c:1.27->1.28 
	include/usage.h:1.185->1.186 

---------------------
PatchSet 3868 
Date: 2004/01/16 12:48:53
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Minor updates from linux 2.6.1

Members: 
	scripts/config/conf.c:1.2->1.3 
	scripts/config/confdata.c:1.5->1.6 

---------------------
PatchSet 3869 
Date: 2004/01/17 00:34:31
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Use bb_get_chomped_line_from_file

Members: 
	networking/inetd.c:1.6->1.7 

---------------------
PatchSet 3870 
Date: 2004/01/17 01:26:53
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Changed #define names for common features (superficial)

Members: 
	networking/inetd.c:1.7->1.8 

---------------------
PatchSet 3871 
Date: 2004/01/17 01:44:32
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Remove some defined statements

Members: 
	networking/inetd.c:1.8->1.9 

---------------------
PatchSet 3872 
Date: 2004/01/17 02:47:45
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Use 1 line for function name and return value,
remove dofork define/variable,
dont check pid value is < or > than 0 if we know it is 0.

Members: 
	networking/inetd.c:1.9->1.10 

---------------------
PatchSet 3873 
Date: 2004/01/17 03:20:46
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
The functions setconfig, enter and bump_nofile were only called once, marge them into the calling
function.

Members: 
	networking/inetd.c:1.10->1.11 

---------------------
PatchSet 3874 
Date: 2004/01/17 03:24:05
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch from Arthur Othieno, clarify common options between dpkg and dpkg-deb

Members: 
	archival/Config.in:1.13->1.14 

---------------------
PatchSet 3875 
Date: 2004/01/17 05:03:30
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Modify bb_lookup_port to allow the protocol to be specified, allowing
/etc/services support for inetd, netcat and tftp.

Members: 
	include/libbb.h:1.124->1.125 
	libbb/xconnect.c:1.11->1.12 
	networking/ftpgetput.c:1.13->1.14 
	networking/inetd.c:1.11->1.12 
	networking/nc.c:1.21->1.22 
	networking/telnet.c:1.40->1.41 
	networking/tftp.c:1.20->1.21 
	networking/wget.c:1.64->1.65 

---------------------
PatchSet 3876 
Date: 2004/01/17 23:07:14
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch from Leif Lindholm (slightly modified by me), to fix http
redirection.
Example of incorrect behaviour was the following url, busybox wget didnt
get redirected to the busybox url as it should.
http://freshmeat.net/redir/busybox/953/url_homepage/www.busybox.net

Members: 
	networking/wget.c:1.65->1.66 

---------------------
PatchSet 3877 
Date: 2004/01/18 05:15:16
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Use bb_getopt_ulflags, save 200-300 bytes

Members: 
	coreutils/ls.c:1.101->1.102 

---------------------
PatchSet 3878 
Date: 2004/01/18 05:41:30
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Fix a bug where `ls -le` would print the time twice.

Members: 
	coreutils/ls.c:1.102->1.103 

---------------------
PatchSet 3879 
Date: 2004/01/18 08:58:06
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Fix up a couple of bugs i introduced in yesterdays cleanup.

Members: 
	networking/inetd.c:1.12->1.13 

---------------------
PatchSet 3880 
Date: 2004/01/18 18:18:33
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Stephane Billiart writes:

bb_lookup_port now takes 3 parameters but rdate has not been modified
accordingly and fails to compile in the current CVS version.
The modification below fixes the problem.

Now, RFC868 allows both UDP and TCP implementations of the time protocol
so this may not work if someone defines a udp time service other than 37
but who would do that?

Members: 
	util-linux/rdate.c:1.31->1.32 

---------------------
PatchSet 3881 
Date: 2004/01/20 12:57:18
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch from Tito, reduce size, merge functions that are only used once.

Members: 
	util-linux/fdformat.c:1.2->1.3 

---------------------
PatchSet 3882 
Date: 2004/01/20 15:32:39
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Redo getconfigent, save 150 bytes, still small memory leak when
parsing invalid entries.

Members: 
	networking/inetd.c:1.13->1.14 

---------------------
PatchSet 3883 
Date: 2004/01/21 10:59:45
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch by Richard Kojedzinszky, when using END at end of lines it was
 skipping to next line, cw command was leaving one char in buffer

Members: 
	editors/vi.c:1.30->1.31 

---------------------
PatchSet 3884 
Date: 2004/01/21 11:36:44
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Patch from Atsushi Nemoto, recent MIPS kernel headers
does not provide PAGE_SHIFT for userland (because now mips-linux kernel
supports PAGESIZE other than 4K).

Members: 
	libbb/procps.c:1.11->1.12 

---------------------
PatchSet 3885 
Date: 2004/01/22 07:10:13
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Vodz, last_patch_123, patch have new version getopt_ulflags.
- size reduced 34 bytes
- don`t use dynamic memory allocation
- small indent correction.

Members: 
	libbb/getopt_ulflags.c:1.5->1.6 

---------------------
PatchSet 3886 
Date: 2004/01/22 09:04:58
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Check one and only one of start, stop are given.
Remove some global variables.
#define some getopt values.

Members: 
	debianutils/start_stop_daemon.c:1.10->1.11 

---------------------
PatchSet 3887 
Date: 2004/01/22 12:42:23
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
last_patch_124 from Vodz, fix an ash bug when alt-1 was pressed, debian
bug #228915

Members: 
	shell/cmdedit.c:1.86->1.87 

---------------------
PatchSet 3888 
Date: 2004/01/23 10:57:00
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Remove unneeded conditions and logic, fix bug where ownership didnt
change.
Dont use bb_make_directory it doesnt have the features, and its ugly to
work around it.

Members: 
	coreutils/install.c:1.4->1.5 

---------------------
PatchSet 3889 
Date: 2004/01/23 20:28:53
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Dont change ownership unless we created the directory.

Members: 
	coreutils/install.c:1.5->1.6 

---------------------
PatchSet 3890 
Date: 2004/01/23 21:40:19
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Check valid options were given

Members: 
	coreutils/install.c:1.6->1.7 

---------------------
PatchSet 3891 
Date: 2004/01/23 21:43:49
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Correct check for only one of K or S options

Members: 
	debianutils/start_stop_daemon.c:1.11->1.12 

---------------------
PatchSet 3892 
Date: 2004/01/23 21:57:16
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Enable long options, adds 150 bytes.

Members: 
	coreutils/install.c:1.7->1.8 

---------------------
PatchSet 3893 
Date: 2004/01/25 05:48:28
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Add the -h, --dereference option for archive creation.

Members: 
	archival/tar.c:1.186->1.187 

---------------------
PatchSet 3894 
Date: 2004/01/25 05:50:28
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Add the -r option as a synonym of -R

Members: 
	coreutils/cp.c:1.21->1.22 

---------------------
PatchSet 3895 
Date: 2004/01/25 08:46:10
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Fix compile error when tab completion disabled

Members: 
	shell/ash.c:1.86->1.87 

---------------------
PatchSet 3896 
Date: 2004/01/25 19:47:10
Author: mjn3
Branch: HEAD
Tag: (none) 
Log:
Be stricter when converting strings to integers.  Should fix the problem
reported by Rob.

Members: 
	coreutils/expr.c:1.14->1.15 

---------------------
PatchSet 3897 
Date: 2004/01/26 07:17:30
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Pascal Brisset writes:

uuencode fails to encode binary data because it right-shifts
bytes as signed chars and keeps the duplicated sign bits.

The original base64_encode() from wget/http.c is broken as well,
but it is only used to encode ascii data.

-- Pascal

Members: 
	coreutils/uuencode.c:1.25->1.26 
	networking/wget.c:1.66->1.67 

---------------------
PatchSet 3898 
Date: 2004/01/26 07:59:42
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Sigh.  TRENDware has released source -- only for busybox and udhcp.
So despite their not providing kernel source, they have compiled with
the requirements for busybox at least...

Members: 
	docs/busybox.net/products.html:1.3->1.4 
	docs/busybox.net/shame.html:1.4->1.5 

---------------------
PatchSet 3899 
Date: 2004/01/26 08:23:36
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
A few little updates, mostly cosmetic

Members: 
	docs/busybox.net/products.html:1.4->1.5 
	docs/busybox.net/shame.html:1.5->1.6 

---------------------
PatchSet 3900 
Date: 2004/01/27 07:36:07
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
Align using spaces to furthurest character and then one tab, now they
should always be aligned.

Members: 
	coreutils/Makefile.in:1.6->1.7 

---------------------
PatchSet 3901 
Date: 2004/01/27 09:22:20
Author: bug1
Branch: HEAD
Tag: (none) 
Log:
New applet, seq. No options, just the basics.

Members: 
	coreutils/Config.in:1.21->1.22 
	coreutils/Makefile.in:1.7->1.8 
	coreutils/seq.c:INITIAL->1.1 
	include/applets.h:1.110->1.111 
	include/usage.h:1.186->1.187 

---------------------
PatchSet 3902 
Date: 2004/01/27 20:17:39
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Teach busybox ps to get the correct uid when displaying stuff

Members: 
	libbb/procps.c:1.12->1.13 

---------------------
PatchSet 3903 
Date: 2004/01/29 22:33:28
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Apply a couple of optimizations

Members: 
	libbb/hash_fd.c:1.3->1.4 

---------------------
PatchSet 3904 
Date: 2004/01/30 21:44:20
Author: mjn3
Branch: HEAD
Tag: (none) 
Log:
Support new uClibc stdio core.

Members: 
	libbb/printf.c:1.2->1.3 

---------------------
PatchSet 3905 
Date: 2004/01/30 22:24:32
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Avoid symbol naming conflict with libm

Members: 
	coreutils/dd.c:1.54->1.55 

---------------------
PatchSet 3906 
Date: 2004/01/30 22:31:58
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Use proper C99 types throughout.  So not use silly typedefs.

Members: 
	libbb/hash_fd.c:1.4->1.5 

---------------------
PatchSet 3907 
Date: 2004/01/30 22:40:05
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Use proper C99 types

Members: 
	networking/nslookup.c:1.30->1.31 
	util-linux/mkfs_minix.c:1.39->1.40 

---------------------
PatchSet 3908 
Date: 2004/01/30 22:52:27
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
s/u_int/unsigned int/g
s/u_short/unsigned short/g

Members: 
	libbb/dump.c:1.6->1.7 

---------------------
PatchSet 3909 
Date: 2004/01/30 22:53:38
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
s/u_int/uint/g

Members: 
	archival/rpm.c:1.4->1.5 
	archival/rpm2cpio.c:1.10->1.11 
	util-linux/fdisk.c:1.15->1.16 
	util-linux/fsck_minix.c:1.37->1.38 

---------------------
PatchSet 3910 
Date: 2004/01/30 22:56:20
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Fixup use of 'u_int' to instead use 'unsigned int'

Members: 
	util-linux/nfsmount.c:1.25->1.26 
	util-linux/nfsmount.h:1.5->1.6 

---------------------
PatchSet 3911 
Date: 2004/01/30 22:59:50
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Use proper C99 types

Members: 
	networking/libiproute/utils.h:1.1->1.2 

---------------------
PatchSet 3912 
Date: 2004/01/30 23:45:12
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Use standard C99 types

Members: 
	networking/udhcp/arpping.c:1.4->1.5 
	networking/udhcp/arpping.h:1.1->1.2 
	networking/udhcp/clientpacket.c:1.5->1.6 
	networking/udhcp/dhcpc.c:1.15->1.16 
	networking/udhcp/dhcpc.h:1.3->1.4 
	networking/udhcp/dhcpd.c:1.4->1.5 
	networking/udhcp/dhcpd.h:1.4->1.5 
	networking/udhcp/files.c:1.12->1.13 
	networking/udhcp/leases.c:1.4->1.5 
	networking/udhcp/leases.h:1.3->1.4 
	networking/udhcp/options.c:1.6->1.7 
	networking/udhcp/options.h:1.4->1.5 
	networking/udhcp/packet.c:1.3->1.4 
	networking/udhcp/packet.h:1.1->1.2 
	networking/udhcp/script.c:1.11->1.12 
	networking/udhcp/serverpacket.c:1.3->1.4 
	networking/udhcp/serverpacket.h:1.2->1.3 
	networking/udhcp/socket.c:1.6->1.7 
	networking/udhcp/socket.h:1.2->1.3 

---------------------
PatchSet 3913 
Date: 2004/01/31 05:27:17
Author: andersen
Branch: HEAD
Tag: (none) 
Log:
Bump version for release

Members: 
	Rules.mak:1.25->1.26