aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
blob: ba6d65969cfc8aa7c066a138d46f9207f64891c1 (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
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
2004-08-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* Makefile.am: Added headers to SUBDIRS.
	* configure.ac: Check for AC_SYS_LARGEFILE.
	Use AC_CONFIG_LINKS to provide for fnmatch.h and getopt.h on
	the systems where these are missing
	Check for argp and replace it if necessary.
	* src/Makefile.am: Updated
	* src/fnmatch.h: Moved to headers/
	* src/getopt.h: Likewise.
	* src/main.c: Option parsing rewritten using argp. Improved
	option consistency checking.
	* src/rmt.c: Include getopt.h

	* src/argp-ba.c: New file
	* src/argp-eexst.c: New file
	* src/argp-fmtstream.c: New file
	* src/argp-fs-xinl.c: New file
	* src/argp-help.c: New file
	* src/argp-parse.c: New file
	* src/argp-pv.c: New file
	* src/argp-pvh.c: New file
	* src/argp-xinl.c: New file
	* src/pin.c: New file

	* headers: New directory
	* headers/Makefile.am: New file
	* headers/getopt.h: New file
	* headers/argp.h: New file
	* headers/fnmatch.h: New file
	* headers/.cvsignore: New file
	
2004-03-02  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* src/util.c (copy_files_disk_to_disk): Bugfix. If a file
	grew n bytes in copy-pass mode, these n bytes got prepended
	to the contents of all subsequent files. Fix provided by
	Holger Fleischmann <holger_fleischmann@mra.man.de>
	* THANKS: Added Holger Fleischmann.

2004-02-27  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* src/makepath.c: Remove unneded typedefs
	
	* src/copyin.c: Remove __MSDOS__ conditionals
	* src/copyout.c: Likewise
	* src/copypass.c: Likewise
	* src/main.c: Likewise
	* src/tar.c: Likewise
	* src/util.c: Likewise
	
2004-02-27  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
	
	Changed from flat to deep package layout. Added the framework
	for NLS support.
	
	* .cvsignore: Updated
	* Makefile.am: Updated
	* configure.ac: Updated
	* NEWS: Updated
	* README-alpha: Updated
	* THANKS: Updated

	* autogen.sh: New file
	
	* alloca.c: Moved to src
	* argmatch.c: Likewise
	* bcopy.c: Likewise
	* dstring.h: Likewise
	* copyin.c: Likewise
	* copyout.c: Likewise
	* copypass.c: Likewise
	* cpio.h: Likewise
	* cpiohdr.h: Likewise
	* defer.c: Likewise
	* defer.h: Likewise
	* dirname.c: Likewise
	* dstring.c: Likewise
	* dstring.h: Likewise
        * error.c: Likewise
        * extern.h: Likewise
        * filemode.c: Likewise
        * filetypes.h: Likewise
        * fnmatch.c: Likewise
        * fnmatch.h: Likewise
        * getopt.c: Likewise
        * getopt.h: Likewise
        * getopt1.c: Likewise
        * global.c: Likewise
        * idcache.c: Likewise
        * main.c: Likewise
        * makepath.c: Likewise
        * mkdir.c: Likewise
        * mt.c: Likewise
        * rmt.c: Likewise
        * rmt.h: Likewise
        * rtapelib.c: Likewise
        * safe-stat.h: Likewise
        * strdup.c: Likewise
        * strerror.c: Likewise
        * stripslash.c: Likewise
        * system.h: Likewise
	* tar.c: Likewise
	* tar.h: Likewise
	* tarhdr.h: Likewise
	* userspec.c: Likewise
	* util.c: Likewise
	* xmalloc.c: Likewise
	* xstrdup.c: Likewise

 	* cpio.1: Moved to doc
	* cpio.texi: Likewise
        * mt.1: Likewise

	* src: New directory
        * src/.cvsignore: New file
        * src/Makefile.am: Likewise
        * src/alloca.c: Likewise
        * src/argmatch.c: Likewise
        * src/bcopy.c: Likewise
        * src/copyin.c: Likewise
        * src/copyout.c: Likewise
        * src/copypass.c: Likewise
        * src/cpio.h: Likewise
        * src/cpiohdr.h: Likewise
        * src/defer.c: Likewise
        * src/defer.h: Likewise
        * src/dirname.c: Likewise
        * src/dstring.c: Likewise
        * src/dstring.h: Likewise
        * src/error.c: Likewise
        * src/extern.h: Likewise
        * src/filemode.c: Likewise
        * src/filetypes.h: Likewise
        * src/fnmatch.c: Likewise
        * src/fnmatch.h: Likewise
        * src/getopt.c: Likewise
        * src/getopt.h: Likewise
        * src/getopt1.c: Likewise
        * src/gettext.h: Likewise
        * src/global.c: Likewise
        * src/idcache.c: Likewise
        * src/main.c: Likewise
        * src/makepath.c: Likewise
        * src/mkdir.c: Likewise
        * src/mt.c: Likewise
        * src/rmt.c: Likewise
        * src/rmt.h: Likewise
        * src/rtapelib.c: Likewise
        * src/safe-stat.h: Likewise
        * src/strdup.c: Likewise
        * src/strerror.c: Likewise
        * src/stripslash.c: Likewise
        * src/system.h: Likewise
        * src/tar.c: Likewise
        * src/tar.h: Likewise
        * src/tarhdr.h: Likewise
        * src/userspec.c: Likewise
        * src/util.c: Likewise
	* src/xmalloc.c: Likewise
	* src/xstrdup.c: Likewise

	* doc: New directory
	* doc/.cvsignore: New file
	* doc/Makefile.am: New file
	* doc/cpio.1: New file
	* doc/cpio.info: New file
	* doc/cpio.texi: New file
	* doc/mt.1: New file

	* po: New directory
	* po/.cvsignore: New file
	* po/LINGUAS: New file
	* po/Makevars: New file
	* po/POTFILES.in: New file
	
2003-11-28  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* configure.ac: Added various checks
	* Makefile.am (rmt_LDADD): Added.
	* error.c: Updated
	* rmt.c: Removed useless private_errstring
	* system.h: Updated
	* userspec.c: Changed the way of handling declared vs. undeclared
	system calls.
	* strerror.c: New file. Borrowed from GNU Radius.

	* copyin.c: Removed kludgy declaration of delayed_seek_count.
	* copypass.c: Likewise
	* extern.h: Declare delayed_seek_count.
	* mkdir.c: Fixed handling of undeclared errno
	* mt.c: Likewise
	* util.c: Likewise
	* rtapelib.c: Likewise
	
2003-11-28  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* TODO: New file

	* README-alpha: New file
	* Makefile.am: Require at least version 1.7.1
	* configure.ac: Check for locale.h
	* main.c (main): Call setlocale. Thanks
	Mitsuru Chinen <mchinen@yamato.ibm.com>	for the patch.
	* THANKS: Updated
	
2003-11-21  Sergey Poznyakoff  <gray@Mirddin.farlep.net>

	* configure.ac: Added to the repository
	* Makefile.am: Likewise
	* NEWS: Likewise
	* README: Likewise
	* AUTHORS: Likewise
	* .cvsignore: Likewise
	
	* configure.in: Removed
	* Makefile.in: Removed
	* makefile.pc: Removed
	* configure: Removed
	
	* alloca.c: Added to the repository
	* argmatch.c: Likewise
	* bcopy.c: Likewise
	* cpio.h: Likewise
	* cpiohdr.h: Likewise
	* defer.c: Likewise
	* defer.h: Likewise
	* dirname.c: Likewise
	* dstring.c: Likewise
	* dstring.h: Likewise
	* error.c: Likewise
	* filemode.c: Likewise
	* filetypes.h: Likewise
	* fnmatch.c: Likewise
	* fnmatch.h: Likewise
	* getopt.c: Likewise
	* getopt.h: Likewise
	* getopt1.c: Likewise
	* idcache.c: Likewise
	* mkdir.c: Likewise
	* rmt.h: Likewise
	* rtapelib.c: Likewise
	* safe-stat.h: Likewise
	* strdup.c: Likewise
	* stripslash.c: Likewise
	* tar.c: Likewise
	* tar.h: Likewise
	* tarhdr.h: Likewise
	* xmalloc.c: Likewise
	* xstrdup.c: Likewise
	
	* makepath.c: Updated
	* mt.c: Likewise.
	* rmt.c: Likewise.
	* util.c: Likewise.
	* copyin.c: Likewise.
	* copyout.c: Likewise.
	* copypass.c: Likewise.
	* global.c: Likewise.
	* main.c: Likewise.
	
Thu Jun 13 20:14:48 2002  John Oleynick  (juo@gnu.org)
	* copyin.c:  Strip leading / on absolute filenames after
	comparing to the list of files specified on the command line
	(instead of before).  Problem reported by Jeff Holt.
	* Version 2.5 released.

Thu Jun 13 00:20:30 2002  John Oleynick  (juo@gnu.org)
	* Makefile.in:  Fixed problem of looking in srcdir for info files.
	Bug reported by Mike Castle.
	* cpio.texi:  Fixed typo.  Problem reported by Fabrice Bauzac.

Sun Jan 13 18:45:02 2002  John Oleynick  (juo@gnu.org)
	* copyin.c:  Fixed a problem skipping files with multiple links
	in a newc or CRC format archive.  If the file with the shared copy
	of the data was skipped, but other links were not skipped, the
	other links were created as empty files.  Bug reported by 
	Hendrik-Jan Thomassen.

Thu Dec  6 20:05:10 2001  John Oleynick  (juo@gnu.org)
	* mt.c, mt.1:  Merged Debian --rsh-command option and -V fix.
	* copyout.c, copypass.c, util.c, extern.h:  Modified to warn
	  if a file grows or its mtime is changed while it is being
	  copied.

Wed Dec  6 00:02:04 2001  John Oleynick  (juo@gnu.org)
	* Many files:  Updated FSF's address in copyright notices.

Wed Aug 29 23:57:05 2001  John Oleynick  (juo@gnu.org)
	* Many files:  Numerous fixes from Debian, Red Hat and SuSE
	GNU/Linux distributions.

Tue Jan 16 19:03:05 1996  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* util.c: An I/O error reading a file would cause the last byte
	of the next file to be corrupted in the archive.  Thanks to a
	buggy NT NFS server for pointing out this problem.
	* Version 2.4.2 released.

Tue Jan  9 23:19:37 1996  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* copyout.c: missed 1 part of last bug fix.

Mon Jan  8 16:49:01 1996  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* copyout.c, copypass.c: Use result of readlink() as length
	of link name instead of size from lstat().  On some OS's lstat() 
	doesn't return the true length in size.  Bug reported by
	Robert Joop (rj@rainbow.IN-berlin.DE).

Wed Dec 20 10:52:56 1995  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* rmt.c:  Added temporary kludge so make rmt will work on Linux.
	* configure.in:  Only define HAVE_UTIME_H if utime.h declares
	struct utimbuf.
	* Makefile.in:  Change prefix, exec_prefix and bindir to get their
	values from configure.  Added cpio.info to DISTFILES.
	* cpio.texi:  Added INFO-DIR-ENTRY.
	* Version 2.4.1 released.

Wed Nov 22 19:37:05 1995  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
        * cpio.texi:  Updated release date and FSF's address.
        * NEWS: Listed major new features for 2.4.
	* mt.c, mt.1: Added seek and fsfm commands.
	* Version 2.4 released.

Tue Jun 27 19:14:27 1995  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
        * configure.in: fixed for new autoconf.  Added check to make
	sure fnmatch() works.
        * Makefile.in: changed realclean to maintainer-clean.  Added
	support to handle fnmatch separate from other LIBOBJS.
        * cpio.texi:  More changes for 2.4.

Wed Dec 14 16:14:27 1994  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* copypass.h:  When given the -a option, set the access time of
	the copy to be the access time of the original (instead of the
	modification time of the original).  Reported by
	karney@pppl.gov (Charles Karney).
	* cpio.texi:  Updated with changes for 2.4.

Wed Nov  3 18:18:07 1994  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* safe-stat.h, Makefile.in:  New file used by mkdir.c.  This will go
	away when we get the real safe-xstat.[ch]in for mkdir.c.
	* main.c:  Don't mention [--null] twice in -p's usage message.
	Changed --no-absolute-paths to --no-absolute-filenames.
	* cpio.1:  Updated man page with new features.
	* cpio.texi, texinfo.tex, Makefile.in:  Added texi documentation
	from Robert Carleton (rbc@gnu.ai.mit.edu).

Mon Oct  3 00:46:30 1994  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* makefile.pc, system.h:  Changes to compile with Borland C++ 4.0.

Thu Sep 29 22:15:50 1994  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* makepath.c: Don't #define index if it is already #defined.

	* mt.c:  Check for __hpux defined instead of __hpux__.  Reported
	by ericb@lsid.hp.com (Eric Backus).

Thu Sep 29 11:21:31 1994  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* extern.h, util.c, copyout.c, copypass.c, main.c, global.c:
	Never mind --ignore-disk-input-errors flag, we'll just always
	do that, like tar.

	* global.c, extern.h, main.c, copyin.c, copyout.c, copypass.c:
	Added --quiet flag to supress printing number of blocks copied.

	* global.c, extern.h:  If compiled with gcc, make input_bytes
	and output_bytes `long long' instead of `long'.  We need more
	than 32 bits to keep track of the number of bytes copied to
	and from tape drives that hold more than 4Gbytes.

	* util.c, copyin.c, main.c, global.c, extern.h:  Added
	--only-verify-crc flag to read a CRC format archive and verify
	its contents' CRCs.

	* copyout.c:  Fixed problem with creating oldc format archives
	on machines with 16 bit ints.  Reported by mpoole@cix.compulink.co.uk
	(Martin Poole).

	* mt.c: Need to open tape WR_ONLY for erase command (and probably
	others?).  Reported by robert@hst.e.technik.uni-kl.de (Robert
	Vogelgesan).  Accept `eject' as a synonym for `offline'.  Accept
	`-t' as a synonym for `-f' (to be compatible with HPUX mt, which 
	only accepts `-t').

Wed Sep 28 12:01:55 1994  John Oleynick  (juo@wombat.gnu.ai.mit.edu)
	* extern.h, global.c, main.c, util.c: only write sparse files
	when given --sparse flag.
	* extern.h, util.c, copyout.c, copypass.c, main.c, global.c:
	Added support for --ignore-disk-input-errors flag.

Wed Aug 24 12:55:38 1994  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)

	* configure.in: Replace calls to AC_REMOTE_TAPE and AC_RSH
	with equivalent code, since those macros are going away.

Sun Feb 13 00:56:48 1994  John Oleynick  (juo@goldman.gnu.ai.mit.edu)
	* extern.h, global.c, main.c, util.c:  Added code to 
	tape_buffered_peek() to properly handle large, corrutped 
	archives, without overrunning the allocated buffer and
	dumping core.  Also changed the way the input and output 
	buffers are allocated in initialize_buffers().
	
Tue Jan 25 01:04:32 1994  John Oleynick  (juo@goldman.gnu.ai.mit.edu)
	* copyin.c, copyout.c, copypass.c, extern.h, main.c, tar.c, util.c:
	Redid i/o buffer code.  Previously, the same routines buffered input and
	output for accessing the archive and the filesystem.  Now there are
	separate routines for buffering input and output and for buffering the
	archive and the filesystem.  This simplifies much of the buffer code
	(e.g., only input from the archive has to check for end of tape and
	allow the tape to be changed, only output to the filesystem has to
	handle byte and word swapping, etc.; previously one routine had to
	handle all of these special cases) This is how the routines got split
	and renamed (old name -> new name):

		clear_rest_of_block -> tape_clear_rest_of_block
		copy_files -> copy_files_tape_to_disk
		    "      -> copy_files_disk_to_disk
		    "      -> copy_files_disk_to_tape
		copy_buf_out -> disk_buffered_write
		    "        -> tape_buffered_write
		copy_in_buf -> tape_buffered_read
		empty_output_buffer -> tape_empty_output_buffer
		    "               -> disk_empty_output_buffer
		fill_input_buffer -> tape_fill_input_buffer
		    "             -> disk_fill_input_buffer
		pad_output -> tape_pad_output
		peek_in_buf -> tape_buffered_peek
		skip_padding -> tape_skip_padding
		toss_input -> tape_toss_input

	* extern.h, global.c, main.c, util.c:  Added support for
	writing sparse files.

Tue Dec 28 23:01:36 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)
	* util.c, system.h, makepath.c, extern.h: don't define chown() 
	and don't typedef uid_t and gid_t if we are being compiled
	by DJGPP.

	* copyin.c, extern.h, global.c, main.c:  Added support for
	--rename-batch-file.
	
	* copyin.c, copyout.c, extern.h:  Cleaned up to pass gcc -Wall.

Wed Dec 22 02:17:44 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* makepath.c, copypass.c, copyin.c:  If cpio was creating a
	directory that contained `.' in the pathname (e.g. `foo/./bar'),
	it would complain that it could not create `.', since it already
	exists.  From schwab@issan.informatik.uni-dortmund.de (Andreas
	Schwab).

	* mt.c:  Added "eject" as a synonym for "offline".

	* util.c:  Slight modification to when we lseek with
	BROKEN_LONG_TAPE_DRIVER (do it every 1Gb, instead 
	of every 2Gb).

	* copyin.c, global.c, extern.h:  Added --no-absolute-paths option, 
	to ignore absolute paths in archives.

Tue Dec 21 01:30:59 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* util.c:  Fix for copying new_media_message_after_number.  From
	Christian.Kuehnke@arbi.informatik.uni-oldenburg.de (Christian
	Kuehnke).

Thu Jul 29 20:35:57 1993  David J. MacKenzie  (djm@wookumz.gnu.ai.mit.edu)

	* Makefile.in (config.status): Run config.status --recheck, not
	configure, to get the right args passed.

Mon Jul 19 23:01:00 1993  David J. MacKenzie  (djm@churchy.gnu.ai.mit.edu)

	* Makefile.in (libdir): Use standard GNU value --
	$(exec_prefix)/lib, not /etc.
	(.c.o): Put CFLAGS last.

Thu Jul  8 19:43:39 1993  David J. MacKenzie  (djm@goldman.gnu.ai.mit.edu)

	* Makefile.in: Add rules for remaking Makefile, configure,
	config.status. 

Mon Jul  5 14:54:08 1993  John Oleynick  (juo@spiff.gnu.ai.mit.edu)

	* cpio.1:  Updated man page for 2.3.
	* Makefile.in:  Create distribution with .gz extension, instead of .z.

Tue Jun 29 18:54:37 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* Makefile.in: Added installdirs target (using mkinstalldirs).
	* Added mkinstalldirs script.
	* main.c, mt.c:  Added --help option.  Changed usage() to
	take a stream and exit value (so --help can print on stdout
	and return a 0 exit status).
	* extern.h:  Removed usage()'s prototype (it was out of date,
	and only used in main.c).

Thu May  6 00:22:22 1993  John Oleynick  (juo@hal.gnu.ai.mit.edu)

	* cpio.1:  Added hpbin and hpodc.

Tue May  4 00:32:29 1993  John Oleynick  (juo@hal.gnu.ai.mit.edu)

	* copyin.c (process_copy_in), copypass.c (process_copy_pass):  When
	deleting an existing file, if the file is a directory, use rmdir()
	instead of unlink().

Thu Apr 29 14:43:56 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* tar.c (read_in_tar_header):  Clear non-protection bits from
	mode, in case tar has left some device bits in there.

Wed Apr 28 10:36:53 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* util.c: Added code to try and work around broken tape drivers
	that have problems with tapes > 2Gb.

	* copyout.c (process_copy_out): Pass file_hdr to 
	writeout_other_defers() and add_link_defer() by reference, 
	not by value.

	* copyin.c (process_copy_in): Pass file_hdr to defer_copyin()
	and create_defered_links() by reference, not by value.

	* defer.c: include <sys/types.h> (to build on BSD 4.3 on HP300)

Fri Apr 16 18:01:17 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* mt.c, util.c: Include <sys/mtio.h> if HAVE_SYS_MTIO_H is 
	defined, not HAVE_MTIO_H.

Wed Apr 14 17:37:46 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* util.c: Include <sys/io/trioctl.h> if HAVE_SYS_IO_TRIOCTL_H
	is defined.

	* mt.c: Only include <sys/mtio.h> if HAVE_SYS_MTIO_H is defined.

Fri Apr  2 13:09:11 1993  John Oleynick  (juo@goldman.gnu.ai.mit.edu)

	* configure.in: Added fnmatch to AC_REPLACE_FUNCS.  Added
	sys/io/trioctl.h to AC_HAVE_HEADERS.

	* Makefile.in: Removed fnmatch.o from OBJS.

	* copyin.c: Only include "fnmatch.h" if FNM_PATHNAME isn't
	defined yet.

	* mt.c: Include <sys/io/trioctl.h> if HAVE_SYS_IO_TRIOCTL_H is
	defined.

Mon Mar 29 17:04:06 1993  John Oleynick  (juo@hal.gnu.ai.mit.edu)

	* Many changes for supporting HPUX Context Dependent Files;
	also some bug fixes to fix problems with mult