forked from libcdio/libcdio
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog-spell-corrected.diff
2328 lines (1700 loc) · 85.3 KB
/
ChangeLog-spell-corrected.diff
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
--- ChangeLog 2025-01-01 20:41:58.487111821 -0500
+++ ChangeLog.spell-corrected 2025-01-01 20:58:59.433825699 -0500
@@ -14,7 +14,7 @@
2024-12-24 Pete Batard <pete@akeo.ie>
* .vs/libcdio.vcxproj, lib/driver/MSWindows/aspi32.c,
- lib/driver/MSWindows/win32.c, lib/driver/MSWindows/win32_ioctl.c:
+ lib/driver/MSWindows/win32.c, lib/driver/MSWindows/win32_ioctl.c:
Use non widestring API calls for MSVC where required When compiling for MSVC with Unicode enabled, the compiler tries to
use widestring API calls unless otherwise specified. So make sure we
enforce the use of non widestring (A suffixed) calls when we pass
@@ -35,7 +35,7 @@
{MSVC => .vs}/config.h, .vs/libcdio.vcxproj,
.vs/libcdio.vcxproj.filters, .vs/set_version.ps1, .vs/unistd.h,
MSVC/README, MSVC/cd-info.vcproj, MSVC/libcdio.sln,
- MSVC/libcdio.vcproj, Makefile.am, include/cdio/types.h, libcdio.sln:
+ MSVC/libcdio.vcproj, Makefile.am, include/cdio/types.h, libcdio.sln:
Add Visual Studio 2022 project files Move and update the MSVC project files to a .vs/ directory since it
gets created by Visual Studio. Also remove the XBox specific
configuration.
@@ -113,7 +113,7 @@
2024-05-21 R. Bernstein <rocky@gnu.org>
- * lib/udf/udf_fs.c: Merge mismatch... remove unneded test, when type becomes unsigned
+ * lib/udf/udf_fs.c: Merge mismatch... remove unneeded test, when type becomes unsigned
2024-05-21 R. Bernstein <rocky@gnu.org>
@@ -283,7 +283,7 @@
* src/cdda-player.c: src/cdda-player.c: always use "%s"-style format
for printf()-style functions `ncuses-6.3` added printf-style function attributes and now makes it
- easier to catch cases when user input is used in palce of format
+ easier to catch cases when user input is used in place of format
string when built with CFLAGS=-Werror=format-security: cdda-player.c:1032:31: error: format not a string literal and no format arguments
[-Werror=format-security] 1032 | mvprintw(i_line++, 0,
line); | ^~~~ Let's wrap all the missing places with "%s" format.
@@ -596,7 +596,7 @@
2019-01-14 Thomas Schmitt <scdbackup@gmx.net>
* src/cd-info.c, test/Makefile.am, test/cdda_4_5.right,
- test/check_cue.sh.in, test/data/Makefile.am, test/data/cdda_4_5.cue:
+ test/check_cue.sh.in, test/data/Makefile.am, test/data/cdda_4_5.cue:
Added test about cdda_4_5.cue which checks for proper display of
track start number > 1
@@ -768,7 +768,7 @@
* conf9AaqoM/subs.awk, conf9AaqoM/subs1.awk, config_extract.sh,
example/read-disc-struct.c, example/read-disc-struct.sh,
- test/driver/abs_path.dSYM/Contents/Info.plist:
+ test/driver/abs_path.dSYM/Contents/Info.plist:
fc94b050dcd361b6f18dbef3886384ee520a4d4b
2018-06-05 Pete Batard <pete@akeo.ie>
@@ -835,7 +835,7 @@
2018-05-18 R. Bernstein <rocky@gnu.org>
- * configure.ac: Remove some obsolte macros
+ * configure.ac: Remove some obsolete macros
2018-02-16 rocky <rocky@gnu.org>
@@ -910,7 +910,7 @@
2017-12-20 R. Bernstein <rocky@gnu.org>
- * src/Makefile.am, test/check_common_fn.in, test/driver/realpath.c:
+ * src/Makefile.am, test/check_common_fn.in, test/driver/realpath.c:
Correct realpath for memleaks and MinGW; fix src/Makefile clean
target
@@ -1022,7 +1022,7 @@
2017-12-02 R. Bernstein <rocky@gnu.org>
- * example/C++/eject.cpp, example/eject.c, lib/driver/device.c:
+ * example/C++/eject.cpp, example/eject.c, lib/driver/device.c:
Remove memory leak in cdio_eject_media_drive
2017-12-01 R. Bernstein <rocky@gnu.org>
@@ -1164,7 +1164,7 @@
2017-11-20 R. Bernstein <rocky@gnu.org>
* include/cdio/ds.h, lib/driver/device.c, lib/iso9660/iso9660_fs.c,
- test/testisocd.c: Reduce memory leaks... remove depricated things in dh.h Note: a reworking of ds.h is needed to handle data which has alloc
+ test/testisocd.c: Reduce memory leaks... remove deprecated things in dh.h Note: a reworking of ds.h is needed to handle data which has alloc
memory.
2017-11-20 R. Bernstein <rocky@gnu.org>
@@ -1223,7 +1223,7 @@
2017-11-18 R. Bernstein <rocky@gnu.org>
- * include/cdio/types.h, lib/driver/netbsd.c, src/cdda-player.c:
+ * include/cdio/types.h, lib/driver/netbsd.c, src/cdda-player.c:
NetBSD fixes
2017-11-18 R. Bernstein <rocky@gnu.org>
@@ -1309,7 +1309,7 @@
2017-09-15 R. Bernstein <rocky@gnu.org>
- * lib/driver/osx.c, test/check_cdtext.sh: (High) Sierra compatiablity... osx.c: Use libcdio version of assert, not OSX's. check_cdtext.sh:
+ * lib/driver/osx.c, test/check_cdtext.sh: (High) Sierra compatibility... osx.c: Use libcdio version of assert, not OSX's. check_cdtext.sh:
return should only be used inside functions
2017-08-25 R. Bernstein <rocky@gnu.org>
@@ -1374,7 +1374,7 @@
2016-11-20 R. Bernstein <rocky@gnu.org>
- * lib/driver/MSWindows/win32_ioctl.c, lib/iso9660/iso9660_fs.c:
+ * lib/driver/MSWindows/win32_ioctl.c, lib/iso9660/iso9660_fs.c:
Remove minor print cast warnings From Ozkan Sezer <sezero>
2016-11-20 R. Bernstein <rocky@gnu.org>
@@ -1441,9 +1441,9 @@
2016-07-11 R. Bernstein <rocky@gnu.org>
- * Makefile.am, lib/driver/abs_path.c, lib/driver/cdio_private.h:
- conditional GIT2CL; host stndup replacment GIT2CL only if --maintainer-mode stndump in cdio_private.h for those
- systems that don't ahve it Changes suggested by Thomas Schmitt
+ * Makefile.am, lib/driver/abs_path.c, lib/driver/cdio_private.h:
+ conditional GIT2CL; host stndup replacement GIT2CL only if --maintainer-mode stndump in cdio_private.h for those
+ systems that don't have it Changes suggested by Thomas Schmitt
2016-06-04 Leon Merten Lohse <leon@green-side.de>
@@ -1453,7 +1453,7 @@
2016-06-03 Leon Merten Lohse <leon@green-side.de>
* test/Makefile.am, test/cdtext-libburnia.right, test/cdtext.right,
- test/check_cdtext.sh, test/data/Makefile.am, test/data/cdtext.cue:
+ test/check_cdtext.sh, test/data/Makefile.am, test/data/cdtext.cue:
Add dedicated unit test for the CD-Text parser Adds a dedicated test script (bash) for the CD-Text parser, using
one of the example tools (cdtext-raw) to call libcdio's CD-Text
parser and display the fields. Tests are performed for two files,
@@ -1469,7 +1469,7 @@
* include/cdio/mmc.h, lib/driver/_cdio_generic.c,
lib/driver/libcdio.sym, lib/driver/mmc/mmc.c,
lib/driver/mmc/mmc_private.h: Expose mmc_read_cdtext as a publicly
- accessable function Removes some redundant error reporting in mmc_read_cdtext (was
+ accessible function Removes some redundant error reporting in mmc_read_cdtext (was
mmc_read_cdtext_private) and make the function public. Also fixes
some incorrect lengths for isrc and mcn.
@@ -1617,7 +1617,7 @@
2015-05-26 R. Bernstein <rocky@gnu.org>
* lib/driver/logging.c: Document better the cdio_logv recursion
- situtation
+ situation
2015-05-26 R. Bernstein <rocky@gnu.org>
@@ -1685,7 +1685,7 @@
2014-10-19 R. Bernstein <rocky@gnu.org>
- * doc/how-to-make-a-release.txt, lib/driver/mmc/mmc_hl_cmds.c:
+ * doc/how-to-make-a-release.txt, lib/driver/mmc/mmc_hl_cmds.c:
mmc_set_drive_speed: GNU/Linux ioctl treats <= 0 as max speed, so
we'll do that here as well. Savannah bug #43428
@@ -1713,7 +1713,7 @@
2014-09-24 R. Bernstein <rocky@gnu.org>
* lib/driver/FreeBSD/freebsd.c, lib/driver/device.c,
- lib/driver/image/bincue.c, lib/driver/mmc/mmc.c, src/cd-drive.c:
+ lib/driver/image/bincue.c, lib/driver/mmc/mmc.c, src/cd-drive.c:
Silence more gcc warnings
2014-09-24 R. Bernstein <rocky@gnu.org>
@@ -1721,7 +1721,7 @@
* NEWS, lib/driver/Makefile.am, lib/driver/mmc/mmc.c,
lib/iso9660/Makefile.am, lib/udf/Makefile.am, src/cd-info.c,
test/Makefile.am: lib/*/Makefile.am: bump version in preparation of
- relase 0.93 test/Makefile.am: add proper dependency on test/example
+ release 0.93 test/Makefile.am: add proper dependency on test/example
NEWS: not coverty work
2014-09-24 R. Bernstein <rocky@gnu.org>
@@ -1815,7 +1815,7 @@
2014-06-20 R. Bernstein <rocky@gnu.org>
- * example/extract.c, lib/driver/image/bincue.c, src/iso-info.c:
+ * example/extract.c, lib/driver/image/bincue.c, src/iso-info.c:
Reduce coverty-found errors
2014-06-20 R. Bernstein <rocky@gnu.org>
@@ -1855,7 +1855,7 @@
2014-06-14 enzo1982 <robert.kausch@freac.org>
- * src/getopt.c, src/getopt.h, src/getopt1.c, src/getopt_int.h:
+ * src/getopt.c, src/getopt.h, src/getopt1.c, src/getopt_int.h:
Updated getopt to the version included with glibc 2.19.
2014-06-14 enzo1982 <robert.kausch@freac.org>
@@ -2023,7 +2023,7 @@
2013-12-12 R. Bernstein <rocky@gnu.org>
- * lib/driver/_cdio_generic.c, test/driver/mmc_read.c:
+ * lib/driver/_cdio_generic.c, test/driver/mmc_read.c:
_cdio_generic.c: correct confusing debug message
test/driver/mmc_read.c: skip until someone understand what to do
here.
@@ -2187,7 +2187,7 @@
2013-10-14 rocky <rocky@gnu.org>
- * include/cdio/udf.h, lib/udf/udf_fs.c: From Pete Batard: * Add udf_get_logical_valume_id to retreive a UDF Logical Volume
+ * include/cdio/udf.h, lib/udf/udf_fs.c: From Pete Batard: * Add udf_get_logical_valume_id to retrieve a UDF Logical Volume
Identifier string * Fix a possible NULL deref in udf_ff_traverse() * Fix comments that were referencing wrong variable names
2013-10-09 R. Bernstein <rocky@gnu.org>
@@ -2305,7 +2305,7 @@
2013-05-28 Brendan O'Dea <bod@debian.org>
* src/cd-drive.help2man, src/cd-info.help2man,
- src/cd-read.help2man, src/iso-info.help2man, src/iso-read.help2man:
+ src/cd-read.help2man, src/iso-info.help2man, src/iso-read.help2man:
Fix NAME paragraph in man pages. Closes #39095
2013-05-16 R. Bernstein <rocky@gnu.org>
@@ -2314,7 +2314,7 @@
2013-05-15 R. Bernstein <rocky@gnu.org>
- * lib/driver/image_common.c: Test whther TOC is init'd and init if
+ * lib/driver/image_common.c: Test whether TOC is init'd and init if
not when asking for track number.
2013-05-15 R. Bernstein <rocky@gnu.org>
@@ -2328,7 +2328,7 @@
test/driver/.gitignore, test/driver/Makefile.am,
test/driver/track.c.in, test/testpregap.c.in: lib/driver/track.c:
was returning last_track+1 for leadout LSN, Use
- CDIO_CROM_LEADOUT_TRACK instaead. ltest/driver/track.c.in: start
+ CDIO_CROM_LEADOUT_TRACK instead. ltest/driver/track.c.in: start
test of lib/driver/track.c. cdda.toc: CDRDAO CD-DA image. Trim
blanks off of varousl files.
@@ -2409,7 +2409,7 @@
2012-11-20 R. Bernstein <rocky@gnu.org>
- * doc/libcdio.texi: Try to clearify LBA versus LSN in libcdio.
+ * doc/libcdio.texi: Try to clarify LBA versus LSN in libcdio.
2012-11-04 R. Bernstein <rocky@gnu.org>
@@ -2580,7 +2580,7 @@
2012-09-27 R. Bernstein <rocky@gnu.org>
- * configure.ac, test/testisocd2.c.in, test/testpregap.c.in:
+ * configure.ac, test/testisocd2.c.in, test/testpregap.c.in:
Recalculate native_top_srcdir one more time
2012-09-27 rocky <rocky@gnu.org>
@@ -2640,7 +2640,7 @@
* include/cdio/types.h, lib/iso9660/iso9660.c,
lib/iso9660/iso9660_private.h: Make bool be 8-bit. Rather switch
- than find where in ISO9660 there was a discrepency between stdbool
+ than find where in ISO9660 there was a discrepancy between stdbool
and the type.h definition.
2012-09-23 R. Bernstein <rocky@gnu.org>
@@ -2655,7 +2655,7 @@
* lib/driver/MSWindows/win32_ioctl.c, lib/driver/device.c,
lib/driver/disc.c, lib/driver/generic.h, lib/driver/image.h,
lib/driver/image/nrg.c, lib/driver/mmc/mmc.c,
- lib/driver/mmc/mmc_ll_cmds.c, lib/driver/read.c, lib/driver/track.c:
+ lib/driver/mmc/mmc_ll_cmds.c, lib/driver/read.c, lib/driver/track.c:
Make sure stdbool is used in driver when it is defined. I think this
fixes bug #37394
@@ -2682,8 +2682,8 @@
* lib/driver/image/bincue.c, test/driver/mmc_read.c,
test/driver/mmc_write.c: image/bincue.c: remove gcc warning.
- mmc_read.c, mmc_write.c: use usleep if that's avalable; fall back to
- "for" loop if sleep, usleep, and MSwindows Sleep isn't avialable.
+ mmc_read.c, mmc_write.c: use usleep if that's available; fall back to
+ "for" loop if sleep, usleep, and MSwindows Sleep isn't available.
2012-04-29 rocky <rocky@gnu.org>
@@ -2843,8 +2843,8 @@
2012-03-25 R. Bernstein <rocky@gnu.org>
- * example/Makefile.am, lib/driver/gnu_linux.c, lib/driver/track.c:
- track.c, gnu_linux.c: Test for exceding max track limit but allow
+ * example/Makefile.am, lib/driver/gnu_linux.c, lib/driver/track.c:
+ track.c, gnu_linux.c: Test for exceeding max track limit but allow
specifying the leadout track in some cases. Makefile.am: need to
build extract unconditionally since that is used in testing
@@ -2925,8 +2925,8 @@
2012-03-25 R. Bernstein <rocky@gnu.org>
- * example/Makefile.am, lib/driver/gnu_linux.c, lib/driver/track.c:
- track.c, gnu_linux.c: Test for exceding max track limit but allow
+ * example/Makefile.am, lib/driver/gnu_linux.c, lib/driver/track.c:
+ track.c, gnu_linux.c: Test for exceeding max track limit but allow
specifying the leadout track in some cases. Makefile.am: need to
build extract unconditionally since that is used in testing
@@ -3009,7 +3009,7 @@
* example/C++/OO/cdtext.cpp, example/cdtext.c,
include/cdio++/cdio.hpp, include/cdio++/cdtext.hpp,
include/cdio++/disc.hpp, include/cdio/cdtext.h,
- lib/driver/cdtext.c, lib/driver/libcdio.sym, src/cd-info.c:
+ lib/driver/cdtext.c, lib/driver/libcdio.sym, src/cd-info.c:
[renamed] cdtext_languages_available to cdtext_list_languages
[fixed] C++ CD-Text API [fixed] C++ CD-Text example
@@ -3113,7 +3113,7 @@
2012-03-05 Pete Batard <pbatard@gmail.com>
- * example/extract.c, lib/driver/utf8.c, lib/iso9660/iso9660_fs.c:
+ * example/extract.c, lib/driver/utf8.c, lib/iso9660/iso9660_fs.c:
Joliet improvements * support discs with more than one secondary volume descriptors * add Joliet support for extract sample * add fallback to non-Joliet if non-Joliet may be longer
2012-03-05 Pete Batard <pbatard@gmail.com>
@@ -3274,12 +3274,12 @@
2012-03-03 R. Bernstein <rocky@gnu.org>
- * lib/driver/MSWindows/win32.c, lib/udf/udf.c, lib/udf/udf_time.c:
+ * lib/driver/MSWindows/win32.c, lib/udf/udf.c, lib/udf/udf_time.c:
More pbatard patches
2012-03-03 R. Bernstein <rocky@gnu.org>
- * lib/driver/portable.h: Forgot to add back in protable.h
+ * lib/driver/portable.h: Forgot to add back in portable.h
2012-03-03 R. Bernstein <rocky@gnu.org>
@@ -3292,14 +3292,14 @@
2012-03-03 R. Bernstein <rocky@gnu.org>
- * lib/driver/MSWindows/win32.c: Reduce complation warnings via
+ * lib/driver/MSWindows/win32.c: Reduce compilation warnings via
changes in pbatard branch
2012-03-03 R. Bernstein <rocky@gnu.org>
* lib/driver/MSWindows/aspi32.c, lib/driver/cdtext.c,
lib/driver/image/bincue.c, lib/driver/image/cdrdao.c,
- lib/driver/mmc/mmc.c: Reduce complation warnings via changes in
+ lib/driver/mmc/mmc.c: Reduce compilation warnings via changes in
pbatard branch
2012-03-03 R. Bernstein <rocky@gnu.org>
@@ -3315,7 +3315,7 @@
2012-03-03 R. Bernstein <rocky@gnu.org>
- * test/check_common_fn.in, test/check_legal.regex:
+ * test/check_common_fn.in, test/check_legal.regex:
check_legal.regex: allow matching cd-info.exe. check_common_fn.in:
don't erase file cd-info_legal.dump if there is an error.
@@ -3352,7 +3352,7 @@
2012-03-03 R. Bernstein <rocky@gnu.org>
- * include/cdio/ecma_167.h, lib/udf/udf_file.c, lib/udf/udf_fs.c:
+ * include/cdio/ecma_167.h, lib/udf/udf_file.c, lib/udf/udf_fs.c:
pbatard flexible array for ecma_167.h header
2012-03-03 R. Bernstein <rocky@gnu.org>
@@ -3412,12 +3412,12 @@
example/isofile2.c, example/isofuzzy.c, example/isolist.c,
example/isolsn.c, example/mmc1.c, example/mmc2.c, example/mmc2a.c,
example/mmc3.c, example/sample3.c, example/sample4.c,
- example/tracks.c, example/udf1.c, example/udf2.c, example/udffile.c:
+ example/tracks.c, example/udf1.c, example/udf2.c, example/udffile.c:
Harmonize source headers: C examples (Patch 4/5)
2012-03-02 R. Bernstein <rocky@gnu.org>
- * lib/iso9660/iso9660_fs.c, test/check_common_fn.in:
+ * lib/iso9660/iso9660_fs.c, test/check_common_fn.in:
check_common_fn.in: show command name when we hit an error
2012-03-02 R. Bernstein <rocky@gnu.org>
@@ -3767,7 +3767,7 @@
2011-12-05 R. Bernstein <rocky@gnu.org>
- * include/cdio/Makefile.am, src/util.h, test/check_common_fn.in:
+ * include/cdio/Makefile.am, src/util.h, test/check_common_fn.in:
Incorporate patch #7628 for building outside of source tree. Check
for locale en-US.
@@ -3810,14 +3810,14 @@
2011-11-27 R. Bernstein <rocky@gnu.org>
- * lib/driver/image/cdrdao.c, test/data/cdda.cue, test/data/vcd2.toc:
+ * lib/driver/image/cdrdao.c, test/data/cdda.cue, test/data/vcd2.toc:
Move a little bit forward in implementing SILENCE in cdrdao. cdrdao
tests now work while being a little more strict.
2011-11-25 R. Bernstein <rocky@gnu.org>
* lib/driver/image/cdrdao.c, test/data/Makefile.am: Add Leon Merten
- Lohse's cdtext test images. cdrdao.c reduse severity of not finding
+ Lohse's cdtext test images. cdrdao.c reduce severity of not finding
source - may change my mind later about this...
2011-11-25 rocky <rocky@gnu.org>
@@ -3867,7 +3867,7 @@
* configure.ac, include/cdio/device.h, lib/driver/image/cdrdao.c,
test/data/Makefile.am, test/data/data5.toc, test/data/data6.toc,
- test/data/data7.toc, test/data/t10.toc, test/driver/cdrdao.c.in:
+ test/data/data7.toc, test/data/t10.toc, test/driver/cdrdao.c.in:
Don't error out on handling "NO PRE_EMPHASIS" in cdrdao TOC.
Savannah bug #34826:
@@ -3928,7 +3928,7 @@
2011-10-20 R. Bernstein <rocky@gnu.org>
- * include/cdio/Makefile.am, src/cd-paranoia/Makefile.am:
+ * include/cdio/Makefile.am, src/cd-paranoia/Makefile.am:
src/cd-paranoia.h and include/cdio/cdio_config.h are derived files,
so don't include them in the distribution.
@@ -4010,7 +4010,7 @@
2011-10-19 R. Bernstein <rocky@gnu.org>
* README.develop, example/sample3.c, include/cdio++/iso9660.hpp,
- src/cd-drive.c, src/cd-paranoia/Makefile.am, test/check_legal.regex:
+ src/cd-drive.c, src/cd-paranoia/Makefile.am, test/check_legal.regex:
Remove CVS $Id$ line which is no longer automatically updated.
ios9660.hpp under FS because of Solaris macro conflict as suggested
by Thomas Schmitt. cd-drive.c: add some casts to remove gcc
@@ -4215,7 +4215,7 @@
2010-11-10 R. Bernstein <rocky@gnu.org>
- * lib/cdda_interface/scan_devices.c: Memoery leak reported in
+ * lib/cdda_interface/scan_devices.c: Memory leak reported in
paranoia-dev. Fix from billy.donahue.
2010-10-26 R. Bernstein <rocky@gnu.org>
@@ -4386,7 +4386,7 @@
2010-02-08 R. Bernstein <rocky@gnu.org>
* lib/driver/mmc/mmc_cmd_helper.h, lib/driver/mmc/mmc_hl_cmds.c,
- lib/driver/mmc/mmc_ll_cmds.c, test/driver/mmc.c: Fix all fo the bugs
+ lib/driver/mmc/mmc_ll_cmds.c, test/driver/mmc.c: Fix all of the bugs
I introduced "improving" the code of others. mmc_ll_cmds.c:
mmc_mode_select and mmc_get_configuration now work. mmc_hl_cmds.c:
bug introduced by turning a var into a pointer to that variable.
@@ -4539,7 +4539,7 @@
2010-02-03 R. Bernstein <rocky@gnu.org>
- * include/cdio/mmc.h, include/cdio/types.h, lib/driver/gnu_linux.c:
+ * include/cdio/mmc.h, include/cdio/types.h, lib/driver/gnu_linux.c:
Add type definition for SCSI sense data.
2010-02-02 R. Bernstein <rocky@gnu.org>
@@ -4616,7 +4616,7 @@
2010-01-28 R. Bernstein <rocky@gnu.org>
- * include/cdio/mmc.h, lib/driver/mmc.c, test/driver/bincue.c.in:
+ * include/cdio/mmc.h, lib/driver/mmc.c, test/driver/bincue.c.in:
Regularis some of the mmc Doxygen comments.
2010-01-27 R. Bernstein <rocky@gnu.org>
@@ -4751,7 +4751,7 @@
* lib/driver/MSWindows/aspi32.c, lib/driver/MSWindows/win32.c,
test/driver/win32.c: Extend win32 test to check
- get_arg("mmc-supported?"). Turn ASPI load failer into an info
+ get_arg("mmc-supported?"). Turn ASPI load failure into an info
message
2010-01-18 R. Bernstein <rocky@gnu.org>
@@ -4769,7 +4769,7 @@
* example/cdchange.c, example/paranoia.c, lib/driver/aix.c,
lib/driver/image_common.c, lib/driver/netbsd.c,
test/driver/gnu_linux.c: driver/*.c: Add response for
- get_arg("mmc-supported?") example/*.c: remove compiler wranings.
+ get_arg("mmc-supported?") example/*.c: remove compiler warnings.
2010-01-17 R. Bernstein <rocky@gnu.org>
@@ -4894,7 +4894,7 @@
2009-12-31 R. Bernstein <rocky@gnu.org>
- * lib/driver/mmc.c, test/driver/Makefile.am, test/driver/mmc.c:
+ * lib/driver/mmc.c, test/driver/Makefile.am, test/driver/mmc.c:
lib/driver/mmc.c: remove bug in dereferencing NULL pointer. (Found
in testing ;-) test/driver/mmc.c: MMC command testing code from
Thomas Schmitt.
@@ -4916,7 +4916,7 @@
* example/cdtext.c, example/mmc1.c, example/mmc2.c,
example/mmc2a.c, example/mmc3.c, example/paranoia.c,
- example/paranoia2.c, example/sample4.c, test/testiso9660.c:
+ example/paranoia2.c, example/sample4.c, test/testiso9660.c:
example/* change failures so the record as skipped tests when
running 'make check'.
@@ -4924,7 +4924,7 @@
* configure.ac, include/cdio/version.h.in, test/Makefile.am,
test/driver/.gitignore, test/driver/Makefile.am, test/{testlinux.c
- => driver/gnu_linux.c}, test/{testsolaris.c => driver/solaris.c}:
+ => driver/gnu_linux.c}, test/{testsolaris.c => driver/solaris.c}:
Move driver tests into a separate directory.
2009-12-26 WIndows XP <rocky@gnu.org>
@@ -4961,7 +4961,7 @@
2009-12-25 R. Bernstein <rocky@gnu.org>
- * NEWS, THANKS, lib/driver/gnu_linux.c, lib/driver/solaris.c:
+ * NEWS, THANKS, lib/driver/gnu_linux.c, lib/driver/solaris.c:
Recording and retrieval of SCSI sense reply for GNU/Linux.
2009-12-25 R. Bernstein <rocky@gnu.org>
@@ -5125,12 +5125,12 @@
* config.rpath, lib/driver/FreeBSD/freebsd.c: Perhaps adding a real
config.rpath will help some of the iconv problems. Remove a
- compiler warning when not compling in FreeBSD.
+ compiler warning when not compiling in FreeBSD.
2009-10-22 R. Bernstein <rocky@gnu.org>
* lib/driver/FreeBSD/freebsd.c, lib/driver/FreeBSD/freebsd.h: Remove
- dupicated code caused by mixup with existing get-media-changed code.
+ duplicated code caused by mixup with existing get-media-changed code.
2009-10-21 R. Bernstein <rocky@gnu.org>
@@ -5203,7 +5203,7 @@
2009-05-14 R. Bernstein <rocky@gnu.org>
- * lib/driver/cdtext.c: Guard against dereferncing a null cdtext
+ * lib/driver/cdtext.c: Guard against dereferencing a null cdtext
pointer.
2009-04-23 rocky <rocky@sanchez.(none)>
@@ -5248,7 +5248,7 @@
2009-04-19 rocky <rocky@sanchez.(none)>
- * .gitignore, example/C++/.gitignore, example/C++/OO/.gitignore:
+ * .gitignore, example/C++/.gitignore, example/C++/OO/.gitignore:
Administrivia
2009-04-05 rocky <rocky@sanchez.(none)>
@@ -5330,7 +5330,7 @@
2008-12-06 R. Bernstein <rocky@sanchez.(none)>
- * example/.gitignore, lib/driver/.gitignore, test/.gitignore:
+ * example/.gitignore, lib/driver/.gitignore, test/.gitignore:
Resolve conflicted files.
2008-12-06 R. Bernstein <rocky@gnu.org>
@@ -5361,7 +5361,7 @@
src/cd-paranoia/doc/.gitignore, src/cd-paranoia/doc/en/.cvsignore,
src/cd-paranoia/doc/en/.gitignore,
src/cd-paranoia/doc/ja/.cvsignore,
- src/cd-paranoia/doc/ja/.gitignore, test/.cvsignore, test/.gitignore:
+ src/cd-paranoia/doc/ja/.gitignore, test/.cvsignore, test/.gitignore:
Makefile.am: Redo target for ChangeLog to use git2cl. NEWS: Note
NetBSD driver added. Reset: git administrivia.
@@ -5614,7 +5614,7 @@
since we don't seem to use this at compile time and it fouls up
cross compilation. cd-paranoia has tests at run-time. libcdio inherited this from
vcdimager which needs it in writing images. It is possible that when
- libcdio does writing this may come back. Untill then, simplify.
+ libcdio does writing this may come back. Until then, simplify.
2008-11-23 R. Bernstein <rocky@gnu.org>
@@ -5767,7 +5767,7 @@
* lib/driver/Makefile.am, lib/driver/gnu_linux.c: Was accessing
outside of check2list causing wild looping. Turn all sprintf's to
snprintf's and check the return. Turn check1list and check2list looping into a fixed constant number
- of iterations rather than rely on a sentinal.
+ of iterations rather than rely on a sentinel.
2008-06-19 flameeyes <flameeyes>
@@ -5775,7 +5775,7 @@
src/cd-paranoia/buffering_write.c,
src/cd-paranoia/buffering_write.h, src/cd-paranoia/cd-paranoia.c,
src/cd-paranoia/pod2c.pl, src/cd-read.c, src/cdda-player.c,
- src/iso-info.c, src/iso-read.c, src/mmc-tool.c, test/testparanoia.c:
+ src/iso-info.c, src/iso-read.c, src/mmc-tool.c, test/testparanoia.c:
Mark variables and constant as static in source tools, examples and
tests. Also replace some char pointers with char arrays.
@@ -5846,7 +5846,7 @@
lib/cdda_interface/scsi_interface.c,
lib/cdda_interface/test_interface.c: Make drive exceptions
non-static objects that are shared between multiple units. Also
- replace the three Dummy functions wth dummy_exception (also common). Bump the revision. This reduces the memory footprint of libcdda_interface of about 200
+ replace the three Dummy functions with dummy_exception (also common). Bump the revision. This reduces the memory footprint of libcdda_interface of about 200
bytes.
2008-06-13 flameeyes <flameeyes>
@@ -5910,7 +5910,7 @@
2008-05-28 rocky <rocky>
- * include/cdio/iso9660.h, lib/iso9660/iso9660.c, test/testiso9660.c:
+ * include/cdio/iso9660.h, lib/iso9660/iso9660.c, test/testiso9660.c:
iso9660.h: parameter name change to match implementation.
iso9660.c: use reentrant version of localtime and gettime (most of
the time) Patch from Nicolas Boullis. testiso9660.c: Change a memcmp for a test_compare which gives more
@@ -6389,7 +6389,7 @@
2007-12-28 rocky <rocky>
* NEWS, configure.ac, test/check_cd_read.sh, test/check_cue.sh.in,
- test/check_iso.sh.in, test/check_nrg.sh.in, test/check_opts.sh:
+ test/check_iso.sh.in, test/check_nrg.sh.in, test/check_opts.sh:
Build outside of source fixes for TEST. We're in 0.80 land now.
2007-12-28 rocky <rocky>
@@ -6421,7 +6421,7 @@
* include/cdio/mmc.h, lib/driver/libcdio.sym, lib/driver/mmc.c: Run
a Multimedia command (MMC) specifying the CDB length. The
- motivation here is for example ot use in is an undocumented debug
+ motivation here is, for example, to use in is an undocumented debug
command for LG drives (namely E7), whose length is being
miscalculated by mmc_get_cmd_len(); it doesn't follow the usual code
number to length conventions. Patch supplied by SukkoPera.
@@ -6461,7 +6461,7 @@
2007-11-16 flameeyes <flameeyes>
* test/check_cd_read.sh, test/check_cue.sh.in,
- test/check_iso.sh.in, test/check_nrg.sh.in, test/check_opts.sh:
+ test/check_iso.sh.in, test/check_nrg.sh.in, test/check_opts.sh:
check_common_fn is in the current dir (build dir), not in $srcdir.
2007-11-16 flameeyes <flameeyes>
@@ -6522,7 +6522,7 @@
* NEWS, configure.ac, lib/cdda_interface/Makefile.am,
lib/cdio++/Makefile.am, lib/driver/Makefile.am,
lib/iso9660/Makefile.am, lib/paranoia/Makefile.am,
- lib/udf/Makefile.am, src/Makefile.am, src/cd-paranoia/Makefile.am:
+ lib/udf/Makefile.am, src/Makefile.am, src/cd-paranoia/Makefile.am:
Remove := in Makefiles for portability. autoconf 1.10 complains
about adding AM_PROC_CC_C_O - pander to it.
@@ -6580,7 +6580,7 @@
2007-08-12 rocky <rocky>
* configure.ac, lib/iso9660/iso9660_fs.c, test/.cvsignore,
- test/Makefile.am, test/testisocd.c, test/testisocd2.c.in:
+ test/Makefile.am, test/testisocd.c, test/testisocd2.c.in:
iso9660_fs.c: remove some (but not all) of the redundancy
testisocd2.c.in: a test of working with an ISO 9660 image.
@@ -6602,7 +6602,7 @@
2007-08-11 flameeyes <flameeyes>
* lib/driver/osx.c: Workaround a missing callback, failures are
- called immediately, sucesses are queued and might not be called
+ called immediately, successes are queued and might not be called
properly.
2007-08-09 flameeyes <flameeyes>
@@ -6720,7 +6720,7 @@
2007-03-09 rocky <rocky>
* src/cd-paranoia/doc/en/cd-paranoia.1.in: More potential cdparanoia
- -> cd-paranoia changes. Note how this differes from cdparanoia (i.e.
+ -> cd-paranoia changes. Note how this differs from cdparanoia (i.e.
not much).
2007-03-09 rocky <rocky>
@@ -6729,7 +6729,7 @@
2007-03-07 rocky <rocky>
- * example/cdchange.c, lib/driver/gnu_linux.c:
+ * example/cdchange.c, lib/driver/gnu_linux.c:
lib/driver/gnu_linux.c: bug #19221 (possibly): memory Leak opening
an inaccessible device. cdchange.c: a stray character got added to
the file
@@ -6901,7 +6901,7 @@
* example/.cvsignore, example/Makefile.am, example/mmc3.c,
include/cdio/mmc.h, lib/driver/Makefile.am, lib/driver/libcdio.sym,
- lib/driver/mmc.c, lib/driver/mmc_private.h, lib/iso9660/Makefile.am:
+ lib/driver/mmc.c, lib/driver/mmc_private.h, lib/iso9660/Makefile.am:
Add routine to get tray status (open/closed) and sample program.
Seems broken at least on SuSE 10.1 if not other GNU/Linux's though.
@@ -7017,7 +7017,7 @@
2006-04-15 rocky <rocky>
- * example/C++/Makefile.am, example/C++/isofile.cpp:
+ * example/C++/Makefile.am, example/C++/isofile.cpp:
iso3.cpp->isofile.cpp
2006-04-15 rocky <rocky>
@@ -7042,7 +7042,7 @@
* example/C++/Makefile.am, example/C++/OO/Makefile.am,
example/Makefile.am, example/README, example/{iso3.c => isofile.c},
- example/{iso2.c => isofile2.c}, example/{iso1.c => isolist.c}:
+ example/{iso2.c => isofile2.c}, example/{iso1.c => isolist.c}:
iso1.c->isolist.c iso2.c -> isofile2.c iso3.c -> isofile.c
2006-04-15 rocky <rocky>
@@ -7058,7 +7058,7 @@
2006-04-14 rocky <rocky>
- * lib/driver/libcdio.sym, src/cdda-player.c, src/mmc-tool.c:
+ * lib/driver/libcdio.sym, src/cdda-player.c, src/mmc-tool.c:
libcdio.sym: add mmc_close_tray cdda-player.c, mmc-tool.c: remove
possibility of uninitialized return code variables
@@ -7155,7 +7155,7 @@
2006-04-05 rocky <rocky>
- * src/cdda-player.c: Figure out last line from screen paramaters.
+ * src/cdda-player.c: Figure out last line from screen parameters.
(I'm embarrassed it this wasn't put in earlier.) Play *only* if we
weren't previously paused or playing.
@@ -7178,7 +7178,7 @@
* include/cdio/device.h, include/cdio/mmc.h,
lib/driver/MSWindows/win32.c, lib/driver/device.c,
lib/driver/gnu_linux.c, lib/driver/libcdio.sym, lib/driver/mmc.c,
- src/mmc-tool.c: Clarify the difference betweeen speed as it is
+ src/mmc-tool.c: Clarify the difference between speed as it is
defined in the MMC spec and drive unit speeds. Add a new mmc routine
for the latter.
@@ -7251,7 +7251,7 @@
2006-03-26 rocky <rocky>
- * include/cdio/cd_types.h, lib/driver/device.c, test/testisocd.c:
+ * include/cdio/cd_types.h, lib/driver/device.c, test/testisocd.c:
Bug in get_drive_types_with_cap: Had wrong boolean logic.
2006-03-26 rocky <rocky>
@@ -7296,7 +7296,7 @@
2006-03-18 rocky <rocky>
* include/cdio/cdda.h, include/cdio/paranoia.h,
- lib/cdda_interface/cddap_interface.c, lib/paranoia/paranoia.c:
+ lib/cdda_interface/cddap_interface.c, lib/paranoia/paranoia.c:
documentation additions, mostly doxygen. More #defines become
enumerations.
@@ -7344,7 +7344,7 @@
2006-03-18 rocky <rocky>
* NEWS, include/cdio/util.h, lib/cdda_interface/utils.c,
- lib/driver/gnu_linux.c, lib/driver/util.c, lib/udf/udf_fs.c:
+ lib/driver/gnu_linux.c, lib/driver/util.c, lib/udf/udf_fs.c:
Security: replace all uses of strcat and strcpy with strncat and
strncpy
@@ -7401,7 +7401,7 @@
2006-03-17 rocky <rocky>
* lib/iso9660/iso9660.c, test/testiso9660.c: More time corrections
- in the presense of timezones, daylight savings time, and
+ in the presence of timezones, daylight savings time, and
HAVE_TM_GMTOFF
2006-03-17 rocky <rocky>
@@ -7417,7 +7417,7 @@
2006-03-17 rocky <rocky>
- * NEWS, lib/iso9660/iso9660.c, test/testiso9660.c:
+ * NEWS, lib/iso9660/iso9660.c, test/testiso9660.c:
iso9660_get_{l,d}time() anot accounting for the timezone properly.
Some other small bugs removed.
@@ -7500,7 +7500,7 @@
lib/cdio++/cdio.cpp, lib/cdio++/cdio_stub.cpp,
lib/cdio++/iso9660.cpp, lib/cdio++/iso9660_stub.cpp: Move code from
devices.hpp and iso9660.hpp headers into external files - cdio.cpp,
- device.cpp, iso9660.cpp configure.ac, C++/OO/Makefile.am: Found some bugs libraries acces in
+ device.cpp, iso9660.cpp configure.ac, C++/OO/Makefile.am: Found some bugs libraries access in
doing the above move.
2006-03-07 rocky <rocky>
@@ -7566,7 +7566,7 @@
* example/C++/device.cpp, include/cdio++/cdio.hpp,
include/cdio++/device.hpp, include/cdio++/iso9660.hpp,
include/cdio/iso9660.h, lib/cdio++/Makefile.am,
- lib/cdio++/{stub.cpp => cdio_stub.cpp}, lib/cdio++/iso9660_stub.cpp:
+ lib/cdio++/{stub.cpp => cdio_stub.cpp}, lib/cdio++/iso9660_stub.cpp:
lib/cdio++/Makeifle.am iso9660.hpp iso9660_stub.cpp: start C++
libiso9660 library iso9660.h: documentation changes. device.hpp:
reduce number of methods stub.cpp->cdio_stub.cpp
@@ -7606,7 +7606,7 @@
2006-03-02 rocky <rocky>
* example/C++/iso1.cpp, example/iso1.c, example/iso3.c: Some small
- changes inspired by correspoinding Perl programs.
+ changes inspired by corresponding Perl programs.
2006-03-01 rocky <rocky>
@@ -7691,7 +7691,7 @@
2006-02-18 rocky <rocky>
- * lib/driver/bsdi.c, lib/driver/device.c, lib/driver/osx.c:
+ * lib/driver/bsdi.c, lib/driver/device.c, lib/driver/osx.c:
scsi_mmc_direction_t -> cdio_mmc_direction_t
2006-02-16 rocky <rocky>
@@ -7718,8 +7718,8 @@
2006-02-13 rocky <rocky>
- * example/.cvsignore, lib/udf/udf_time.c, src/.cvsignore:
- udf_time.c: make sure offset is initialzed (Darwin doesn'thave
+ * example/.cvsignore, lib/udf/udf_time.c, src/.cvsignore:
+ udf_time.c: make sure offset is initialized (Darwin doesn'thave
TIMEZONE var). .cvsignore: add .gdb_history
2006-02-13 rocky <rocky>
@@ -7778,7 +7778,7 @@
2006-02-02 rocky <rocky>
* example/udf2.c, include/cdio++/cdio.hpp, include/cdio/device.h,
- lib/driver/device.c, lib/driver/libcdio.sym:
+ lib/driver/device.c, lib/driver/libcdio.sym:
cdio_driver_return_code_to_str -> cdio_driver_errmsg
2006-02-01 rocky <rocky>
@@ -7792,7 +7792,7 @@
2006-01-26 rocky <rocky>
- * lib/udf/udf_file.c, lib/udf/udf_fs.c, lib/udf/udf_private.h:
+ * lib/udf/udf_file.c, lib/udf/udf_fs.c, lib/udf/udf_private.h:
Commit some of the temporary UDF stuff. It will either be completed
or disabled later.
@@ -7903,12 +7903,12 @@
2006-01-18 rocky <rocky>
- * include/cdio++/device.hpp: Add a default value for drive paramater
+ * include/cdio++/device.hpp: Add a default value for drive parameter
of CloseTray().
2006-01-18 rocky <rocky>
- * example/C++/OO/eject.cpp: Add close status message. Remove uneeded
+ * example/C++/OO/eject.cpp: Add close status message. Remove unneeded
driver_id parameter. Fix a grammatical mistake.
2006-01-17 rocky <rocky>
@@ -8149,7 +8149,7 @@
2005-11-07 pjcreath <pjcreath>
- * lib/cdda_interface/cddap_interface.c, lib/paranoia/paranoia.c:
+ * lib/cdda_interface/cddap_interface.c, lib/paranoia/paranoia.c:
Cleaned up TRACE_PARANOIA and added some messages for the skip case.
2005-11-07 rocky <rocky>
@@ -8345,7 +8345,7 @@
2005-10-28 rocky <rocky>
* lib/driver/MSWindows/win32.c: Use MMC routine for reading data
- blocks. At leat on XP home it seems to work better than generic read
+ blocks. At least on XP home, it seems to work better than generic read
which is a cooked read.
2005-10-27 rocky <rocky>
@@ -8396,7 +8396,7 @@
2005-10-25 pjcreath <pjcreath>
- * configure.ac, example/Makefile.am, src/cd-paranoia/Makefile.am:
+ * configure.ac, example/Makefile.am, src/cd-paranoia/Makefile.am:
Fixed Darwin builds broken by dependency tracking.
2005-10-25 rocky <rocky>
@@ -8426,7 +8426,7 @@
* example/udf1.c, lib/udf/udf_fs.c: Remove memory leak and invalid
write references thanks to valgrind. Now lists all files correctly
- - at least in the absense of directories under /.
+ - at least in the absence of directories under /.
2005-10-24 pjcreath <pjcreath>
@@ -8493,13 +8493,13 @@
2005-10-23 rocky <rocky>
- * lib/cdda_interface/low_interface.h: Rmove references to external
+ * lib/cdda_interface/low_interface.h: Remove references to external
(SCSI) routines that don't in fact exist.
2005-10-23 rocky <rocky>
* lib/cdda_interface/cddap_interface.c: Patch by Erik Lunchpail to
- accomodate systems (e.g. MinGW) that don't have drand48 but have
+ accommodate systems (e.g. MinGW) that don't have drand48 but have
rand.
2005-10-21 rocky <rocky>
@@ -8532,7 +8532,7 @@
2005-10-21 rocky <rocky>
* include/cdio/mmc.h, lib/driver/gnu_linux.c,
- lib/driver/libcdio.sym, lib/driver/mmc.c, lib/driver/mmc_private.h:
+ lib/driver/libcdio.sym, lib/driver/mmc.c, lib/driver/mmc_private.h:
Try to regularize naming better. More mmc_ -> cdio_mmc_ Add more
debug variables to be able to get at enum values in a debugger.
@@ -8627,7 +8627,7 @@
* include/cdio/ecma_167.h: Shortten some field names, add udf_
prefixes to aid with namespace problem; turn logical volume
- descriptor content use into something more useable.
+ descriptor content use into something more usable.
2005-10-17 rocky <rocky>
@@ -8641,7 +8641,7 @@
2005-10-16 rocky <rocky>
* include/cdio/ecma_167.h: Datatypes closer to matching terms used
- in ECMA 167 spec. Combine/remove duplicate tag identifer
+ in ECMA 167 spec. Combine/remove duplicate tag identifier
definitions.
2005-10-16 rocky <rocky>
@@ -8841,7 +8841,7 @@
2005-09-21 rocky <rocky>
* example/C++/paranoia.cpp, example/paranoia.c,
- include/cdio/cdda.h, include/cdio/paranoia.h, test/testparanoia.c:
+ include/cdio/cdda.h, include/cdio/paranoia.h, test/testparanoia.c:
Move lower-level cdrom_drive_t from paranoia.h into cdda.h This may
cause some incompatibilty in applications that did #include
<cdio/cdda.h> without #include <cdio/paranoia.h> As of now it's okay to just #include <cdio/paranoia.h> or include
@@ -8883,7 +8883,7 @@
2005-09-18 rocky <rocky>
* src/cd-info.c, src/cd-read.c: The type of (option) opt needs to be
- int not char and this is noticable on ppc where char is unsigned by
+ int not char and this is noticeable on ppc where char is unsigned by
default. Furthermore, poptGetNextOpt() returns an int, not a char. Bug noticed and patch all thanks to Nicolas Boullis.
2005-09-18 rocky <rocky>
@@ -8920,7 +8920,7 @@
2005-09-16 rocky <rocky>
- * configure.ac, example/C++/Makefile.am, example/Makefile.am:
+ * configure.ac, example/C++/Makefile.am, example/Makefile.am:
configure.ac: make it explicit that --without-cd-paranoia also means
without the library If --without-cd-paranoia don't try to build paranoia programs in
example and example/C++. Thanks to Elio Blanca for reporting the problems.
@@ -9033,7 +9033,7 @@
2005-07-10 rocky <rocky>