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 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280
|
2015-09-12 Sergey Poznyakoff <gray@gnu.org>
Version 2.12
Update docs, use gettext 0.19.6
2015-09-01 Sergey Poznyakoff <gray@gnu.org>
Fix generation of manual directory
* doc/Makefile.am: Change 'manual' goal.
* doc/gendocs.sh: New file.
* doc/gendocs_template: ps output is not built.
Remove not used files
* headers/Makefile.am: Remove.
* headers/fnmatch.h: Remove.
* Makefile.am: Update.
* configure.ac: Update.
Include gnulib and paxutils as submodules.
* gnulib: New submodule.
* paxutils: New submodule.
* .gitignore: Updage
* .gitmodules: Update
* README-hacking: Update.
* bootstrap: Install slightly modified version from the gnulib
repo.
* bootstrap.conf: Add paxutils-related stuff.
* po/.gitignore: Update.
* tests/symlink-bad-length.at: Fix expected output.
* src/copyin.c: Tiny change.
* src/util.c: Likewise.
2014-12-11 Sergey Poznyakoff <gray@gnu.org.ua>
Fix symlink-bad-length test for 64-bit architectures.
* src/util.c: Return non-zero exit code if EOF is hit prematurely.
* tests/symlink-bad-length.at: Revert to original archive: there's
no use testing for recovery, because that depends on the host
architecture. Don't test for exit code as well (same reason).
Account for eventual warning messages.
Fix error recovery in copy-in mode
* src/copyin.c (copyin_link): Fix null dereference.
(read_in_header): Fix error recovery (bug introduced by
27e0ae55).
* tests/symlink-bad-length.at: Test error recovery.
Catch various architecture-dependent error messages (suggested
by Pavel Raiskup).
2014-12-02 Sergey Poznyakoff <gray@gnu.org.ua>
Fix typo
2014-12-01 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfix
* src/copyin.c (get_link_name): Fix range checking.
* tests/symlink-bad-length.at: Change expected error message.
Fix memory overrun on reading improperly created link records.
See
http://lists.gnu.org/archive/html/bug-cpio/2014-11/msg00007.html
* src/copyin.c (get_link_name): New function.
(list_file, copyin_link): use get_link_name
* tests/symlink-bad-length.at: New file.
* tests/symlink-long.at: New file.
* tests/Makefile.am: Add new files.
* tests/testsuite.at: Likewise.
New options to create device and inode-independent archives.
* src/util.c (inode_val): New member trans_inode
(find_inode_val): New function.
(find_inode_file): Rewrite using the above.
(add_inode): Initialize the trans_inode member
depending on the value of renumber_inodes_option.
(get_inode_and_dev): New function.
(stat_to_cpio): Use get_inode_and_dev.
(arf_stores_inode_p): New function.
* src/extern.h (renumber_inodes_option)
(ignore_devno_option): New externs.
* src/global.c (renumber_inodes_option)
(ignore_devno_option): New variables.
* src/main.c: Add new options.
* NEWS: Document changes.
* doc/cpio.1: Document new options.
* doc/cpio.texi: Likewise.
2014-01-31 Sergey Poznyakoff <gray@gnu.org.ua>
Fix package name recognition in bootstrap.
The script logic failed if AC_INIT was split among two lines.
Reported
by Pavel.
* bootstrap (extract_package_name): Rewrite as m4 script to allow
for multiline AC_INIT.
2014-01-30 Sergey Poznyakoff <gray@gnu.org.ua>
Update copyright years.
Treat UID/GID as numeric if prefixed by + (-R option)
The IDs supplied with the -R option are treated as numeric
(without
looking them up in the system database), when prefixed with +.
This
allows to force using numeric value if a user (group) with
a numeric
name exists in the database.
Reported by Joshua Briefman <sirgatez@gmail.com>.
* src/userspec.c (parse_user_spec): Use + as an indicator of
a numeric UID/GID.
* doc/cpio.1: Document changes.
* doc/cpio.texi: Likewise.
Use exit codes consistenly.
Improve documentation.
* .gitignore: Update.
* NEWS: Update.
* doc/cpio.1: Rewrite.
* doc/cpio.texi: Major revamp.
* src/main.c (options): Fix sectioning of the help output.
(parse_opt):
* src/util.c: Use PAXEXIT_FAILURE to indicate an error.
2014-01-28 Sergey Poznyakoff <gray@gnu.org.ua>
Distribute rmt.8; update build system
* NEWS: Update.
* bootstrap (gnulib_extra_files): Remove "missing"
* configure.ac: Do not distribute shar archive.
Define CPIO_MT_COND
* doc/Makefile.am: Always install manpages (mt.1 and rmt.8 --
depending on whether the corresponding programs are built).
* doc/cpio.1: Update.
* doc/mt.1: Update.
* lib/Makefile.am: Use AM_CPPFLAGS instead of INCLUDES.
* src/Makefile.am: Likewise.
* tests/Makefile.am: Likewise.
2012-02-20 Sergey Poznyakoff <gray@gnu.org.ua>
Always use 32 bit CRC
* src/cpiohdr.h (cpio_file_stat) <c_chksum>: Change type to
uint32_t.
* src/extern.h (crc): Change type to uint32_t.
* src/global.c: Likewise.
* src/copyout.c (read_for_checksum): Return uint32_t.
* src/copyin.c: Fix printf formats.
2011-09-19 Sergey Poznyakoff <gray@gnu.org.ua>
Fix error handling in disk_empty_output_buffer and sparse_write
* src/extern.h (delayed_seek_count): Remove.
(disk_empty_output_buffer): Change signature.
* src/util.c (disk_empty_output_buffer): Take two arguments.
Correctly handle partial writes (errno is not meaningful).
(delayed_seek_count): Remove variable.
(sparse_write): Change return type and signature. Rewrite.
Return number actual number of bytes written or -1 on error.
Check returns from lseek and write.
* src/copyin.c (copyin_regular_file): Call
disk_empty_output_buffer
with flush=true before closing the file.
* src/copypass.c (process_copy_pass): Likewise.
Minor fixes.
* configure.ac: Use gettext 0.18
* doc/.gitignore: Add parse-datetime.texi.
* lib/Makefile.am (libpax_a_SOURCES): Add exit-status.c
* src/copyin.c (read_pattern_file): Use open_fatal if opening
pattern file failed.
* src/util.c (set_file_times): Use fdutimens.
2010-08-09 Sergey Poznyakoff <gray@gnu.org.ua>
Bugfixes.
* gnulib.modules: Add getline, required by rmt.
* src/mt.c (fatal_exit): Change exit code to
MT_EXIT_FAILURE.
2010-07-23 Sergey Poznyakoff <gray@gnu.org.ua>
Fix setstat testcases to work on Darwin.
* tests/setstat01.at: Set write permission on the directory
before attempting to rename it.
* tests/setstat02.at: Likewise.
Housekeeping.
* .gitignore: Sort.
* src/cpiohdr.h: Fix indentation of preprocessor statements.
* src/filetypes.h: Likewise.
Improve handling of -D in copy-pass mode.
* gnulib.modules: Add xgetcwd.
* src/copypass.c (process_copy_pass): Convert directory_name
to absolute if -D option was given.
2010-07-22 Sergey Poznyakoff <gray@gnu.org.ua>
Fix bootstrapping.
* bootstrap (symlink_to_dir): Fix symlink calculation.
Minor fix.
* src/filetypes.h: Remove declarations of stat and lstat.
Minor fixes.
* src/copyout.c (count_defered_links_to_dev_ino): Return size_t.
(last_link): Do not use superfluous local variable.
* src/util.c (copy_files_disk_to_tape)
(copy_files_disk_to_disk): Shut down gcc warnings.
Minor changes
* .gitignore: Update.
* am/.gitignore: New file.
* src/.gitignore: Add .gdbinit.
* tests/symlink-to-stdout.at: Fix keywords.
Provide a tar-like --directory (-D) option.
* src/copyin.c (process_copy_in): Call change_dir.
* src/copyout.c (process_copy_out): Likewise.
* src/copypass.c (process_copy_pass): Likewise.
* src/extern.h (change_directory_option): New extern.
(change_dir): New proto.
* src/global.c (change_directory_option): New global.
* src/main.c (options): New option --directory.
(parse_opt): Handle the --directory option.
* src/util.c (change_dir): New proto.
* doc/cpio.texi: Document the --directory option.
2010-07-22 Dmitry V. Levin <ldv@altlinux.org>
Fix --to-stdout option support
* src/copyin.c (copyin_link): Skip an appropriate number of bytes
when to_stdout_option flag is set.
* tests/symlink-to-stdout.at: New test case.
* tests/Makefile.am (TESTSUITE_AT): Add symlink-to-stdout.at.
* tests/testsuite.at: Include symlink-to-stdout.at.
2010-03-10 Sergey Poznyakoff <gray@gnu.org.ua>
Version 2.11
* configure.ac, NEWS: Raise version number.
Bugfixes.
* src/main.c (cpio_options): Remove unused options.
* src/util.c (cpio_create_dir): Fix conditional.
* NEWS: Update.
2010-02-12 Sergey Poznyakoff <gray@gnu.org.ua>
Use same code when creating directories in copy-in and copy-pass
modes.
* src/copyin.c (copyin_mkdir): Remove.
(copyin_directory): Remove.
(copyin_file): Use cpio_create_dir instead
of copyin_directory.
* src/copypass.c (process_copy_pass): Use cpio_create_dir
to create directories.
* src/extern.h (delay_cpio_set_stat): New proto.
* src/util.c (delay_cpio_set_stat): New function.
(delay_set_stat): Rewrite as a wrapper to the above.
(cpio_create_dir): New function.
* tests/setstat01.at: Fix testcase.
* tests/setstat02.at: Likewise.
* tests/setstat03.at: New testcase.
* tests/setstat04.at: New testcase.
* tests/setstat05.at: New testcase.
* tests/Makefile.am: Add new testcases.
* tests/testsuite.at: Likewise.
2010-02-11 Sergey Poznyakoff <gray@gnu.org.ua>
Fix inode number typing.
* src/copyin.c (create_defered_links): Use ino_t for
inode numbers.
(create_defered_links_to_skipped): Likewise.
(process_copy_in): Add typecast to inode fprintf argument.
* src/copyout.c (count_defered_links_to_dev_ino)
(writeout_other_defers): Use ino_t for inode numbers.
* src/copypass.c (link_to_maj_min_ino): Likewise.
* src/util.c (struct inode_val): Likewise.
(find_inode_file, add_inode): Likewise.
* src/extern.h (link_to_maj_min_ino)
(find_inode_file, add_inode): Change signature.
Improve configuration suite.
* configure.ac: Raise version number to 2.10.91.
Require autotools 2.63/1.11.1.
Create shar archive.
Enable silent rules by default.
* Makefile.am (AUTOMAKE_OPTIONS): Remove.
* lib/Makefile.am (rmt-command.h): Silent rule.
* NEWS: Update.
Update copyright years.
2009-07-31 Sergey Poznyakoff <gray@gnu.org.ua>
Delay setting directory attributes until end of run, if they do
not permit writing. Fix debian bug #458079.
* src/copyin.c (copyin_mkdir): New function.
(copyin_directory): Use copyin_mkdir to create directory.
Call set_perms only when safe, otherwise use
repair_delayed_set_stat.
* src/extern.h (cpio_to_stat): New prototype.
(repair_delayed_set_stat): Change prototype.
* src/util.c (cpio_to_stat): New function.
(repair_delayed_set_stat): New function.
* tests/setstat01.at: New test case.
* tests/setstat02.at: New test case.
* tests/Makefile.am (TESTSUITE_AT): Add setstat01.at and
setstat02.at
* tests/testsuite.at: Include setstat01.at and setstat02.at.
* NEWS: Update.
Minor compatibility fix
* src/cpiohdr.h (struct old_cpio_header): c_dev and c_rdev
are unsigned short.
Raise version number to 2.10.90
Fix mt and make sure it is always build during distcheck. Minor
fixes in cpio.
* Makefile.am (AM_DISTCHECK_CONFIGURE_FLAGS): New variable.
Ensure that distcheck builds mt.
* bootstrap: Patch Makefile.in to honor
AM_DISTCHECK_CONFIGURE_FLAGS.
* gnulib.modules: add argp-version-etc and progname.
* src/Makefile.am: Remove useless dependency.
* src/copyin.c (long_format): Fix printf arguments.
* src/copyout.c (read_for_checksum): Return unsigned long.
(process_copy_out): Remove unused variable.
* src/extern.h (crc): Change type to unsigned long.
(program_name): Remove.
* src/global.c: Likewise.
* src/main.c: Include argp-version-etc.h and progname.h
(argp_program_version): Remove.
(program_authors): New global.
(options): Remove the 'Informative options' group. These are
handled automatically by argp.
(parse_opt): Likewise.
(licence): Remove. This info is output by --version.
(process_args): Remove useless test.
(main): Use set_program_name and argp_version_setup.
* src/mt.c: Remove superfluous includes.
Include argp-version-etc.h and progname.h
Use argp to parse arguments.
Supply the fatal_exit function.
* tests/version.at: Update for the new --version output.
* THANKS: Add Peter Breitenlohner.
* AUTHORS: Update Sergey's email.
2009-06-22 Sergey Poznyakoff <gray@gnu.org.ua>
Fix bootstrap
* bootstrap: do not modify original system.h, create a copy of
it instead.
2009-06-20 Sergey Poznyakoff <gray@gnu.org.ua>
Version 2.10
2009-06-19 Sergey Poznyakoff <gray@gnu.org.ua>
Update docs.
* NEWS, THANKS: Update
Make sure the structs used for I/O mapping are not padded.
* am/flushleft.m4, am/pack.m4: New files.
* Makefile.am (ACLOCAL_AMFLAGS): Add -I am.
* bootstrap: Fix arguments to aclocal.
* configure.ac: Call CPIO_PACKED_STRUCTS.
* src/cpiohdr.h: Ensure old_cpio_header,
old_ascii_header and new_ascii_header are packed.
2009-06-19 Clint Adams <schizo@debian.org>
Improve docs
* doc/cpio.texi: Document format file size limits.
2009-06-19 Sergey Poznyakoff <gray@gnu.org.ua>
Housekeeping changes
* lib/Makefile.am: New file
* src/Makefile.am (INCLUDES): add lib
* src/main.c: Include configmake.h (needed for LOCALEDIR).
* tests/Makefile.am (check-local, installcheck-local): Honor
TESTSUITEFLAGS.
2009-03-07 Sergey Poznyakoff <gray@gnu.org.ua>
Refelect changes to paxutils
2009-02-14 Sergey Poznyakoff <gray@gnu.org.ua>
Fix exit codes
Minor fix
Fix bootstrap
Delete paxutils
Switch to Git
2008-03-06 Sergey Poznyakoff <gray@gnu.org.ua>
* bootstrap: Update .cvsignore files.
* po/.cvsignore: Update.
* bootstrap: Sync with tar.
* po/.cvsignore: New file.
2008-02-09 Sergey Poznyakoff <gray@gnu.org.ua>
* NEWS, configure.ac: Raise the patchlevel number.
* THANKS: Update
* doc/cpio.texi: Fix a typo.
* src/extern.h (warn_if_file_changed): Fix type of the 2nd
argument.
* src/tar.c (write_out_tar_header): Stylistic change.
* src/util.c (copy_files_disk_to_disk): Fix types of automatic
variables.
(warn_if_file_changed): Fix type of the 2nd argument.
Patches supplied by Ladislav Michnovic.
2008-02-08 Sergey Poznyakoff <gray@gnu.org.ua>
* po/POTFILES.in: Add missing files.
* src/Makefile.am (INCLUDES): Add -I$(top_builddir)/lxib
* src/extern.h (warn_if_file_changed): Fix type of the 3rd
argument.
* src/util.c (copy_files_tape_to_disk)
(copy_files_disk_to_tape): Fix types of size and k.
(warn_if_file_changed): Fix type of the 3rd argument.
2007-12-05 Sergey Poznyakoff <gray@gnu.org.ua>
Fix mingw build. Thanks to Robert Millan.
* NEWS, THANKS: Update.
* bootstrap: Create lib/system.c, m4/sysdep.m4, update lib/system.h.
* mingw.m4, sysdep.m4: New files.
* configure.ac: Raise version number to 2.9.90.
Call CPIO_SYSDEP. Remove the call to gl_USE_SYSTEM_EXTENSIONS.
(AC_CHECK_HEADERS): Add process.h sys/ioctl.h
* lib/Makefile.am (libcpio_a_SOURCES): Add system.c
* src/idcache.c: Include system.h
* src/userspec.c: Remove alloca stuff (already handled by
gnulib). Include alloca.h.
Remove useless declarations of get.* functions.
* src/util.c: Include sys/ioctl.h conditionally.
2007-09-28 Sergey Poznyakoff <gray@gnu.org.ua>
* src/copyin.c (read_in_binary): Fix passing improper argument
to swab_array. Reported by Dr. David Alan Gilbert.
2007-06-28 Sergey Poznyakoff <gray@gnu.org.ua>
* bootstrap: Update for the change of the TP URL
* NEWS: Update
* src/extern.h, src/makepath.c (make_path): Remove mode
argument. All callers updated.
* src/util.c (apply_delayed_set_stat): Use inverted permissions
from data->stat.
* tests/interdir.at: New test case.
* tests/Makefile.am, tests/testsuite.at: Add interdir.at
* src/copyin.c, src/copypass.c: Save current umask before
processing and call apply_delayed_set_stat afterwards
* src/extern.h (newdir_umask): New global
(delay_set_stat,repair_delayed_set_stat)
(apply_delayed_set_stat): New functions
* src/global.c (newdir_umask): New global
* src/idcache.c: Include xalloc.h
* src/main.c: New warning control option -W interdir
* src/makepath.c: Rewrite using delayed set_stat functions
* src/util.c (create_all_directories): Update call to make_path
(delay_set_stat,repair_delayed_set_stat)
(apply_delayed_set_stat): New functions
* NEWS, doc/cpio.1, doc/cpio.texi: Update
* src/copyin.c, src/copyout.c, src/copypass.c: Number of blocks is
size_t.
* src/extern.h, src/global.c: Use size_t for buffer sizes and
off_t for total I/O bytes.
2007-06-27 Sergey Poznyakoff <gray@gnu.org.ua>
Relicense under GPLv3
2007-06-08 Sergey Poznyakoff <gray@gnu.org.ua>
* configure.ac, NEWS: Version number 2.8
* bootstrap.conf: Update
2007-06-07 Sergey Poznyakoff <gray@gnu.org.ua>
* NEWS: Update
* configure.ac: Raise version to 2.7.90
* doc/cpio.texi: Update
* src/extern.h (set_perms, set_file_times): Take file descriptor
as the first argument.
* src/util.c (set_perms): Take file descriptor
as the first argument and use fchmod/fchown if available. Fixes
CAN-2005-1111.
* src/copyin.c, src/copyout.c, src/copypass.c: Update calls to
set_perms.
* src/makepath.c: Remove useless includes.
* src/util.c (set_perms, stat_to_cpio): Use CPIO_UID and CPIO_GID
macros to set uid and gid
* src/main.c (process_args): Allow to use --owner in copy-out mode.
* THANKS: Add Mike Frysinger
2007-05-18 Sergey Poznyakoff <gray@gnu.org.ua>
* bootstrap: Update from tar repository
* doc/cpio.texi: Fix typo
* src/copyin.c (from_ascii): Bugfix: allow for empty fields
* src/copyout.c (process_copy_out): Fix memory leaks on
orig_file_name.
* src/copypass.c (process_copy_pass): symlink_error takes two
arguments.
* src/extern.h: Add missing includes.
2006-12-18 Sergey Poznyakoff <gray@gnu.org.ua>
* README-cvs: New file
* lib/Makefile.tmpl, lib/bcopy.c, lib/mkdir.c, lib/strdup.c,
lib/strerror.c, lib/.cvsignore, po/.cvsignore,
po/Makevars: Removed
* lib/Makefile.am: New file
* po/POTFILES.in: Update
* bootstrap: Synch with tar.
* configure.ac: Update
* gnulib.modules: Add lchown, strerror
* src/Makefile.am: Update
* src/main.c, src/mt.c: Include rmt-command.h instead of localedir.h
* .cvsignore, doc/.cvsignore: Sort
* src/util.c (sparse_write): Static. Provide a forward
declaration. Define enum sparse_write_states inside the function.
* src/copyin.c (long_format): Use PRIuMAX for printing file size
* src/copyout.c (write_out_binary_header): Fix size conversion
* src/extern.h (tape_toss_input, warn_if_file_changed): Last
argument is off_t
* src/util.c (tape_toss_input, warn_if_file_changed): Last
argument is off_t
(warn_if_file_changed): Use ngettext
2006-11-15 Sergey Poznyakoff <gray@gnu.org.ua>
* src/copypass.c: Fix setting output file permissions
2006-11-13 Sergey Poznyakoff <gray@gnu.org.ua>
* doc/cpio.texi: Consistently use @option{} for displaying command
line options.
Fix formatting in "Invoking `cpio'" section
* src/main.c (process_args): Fix usage error diagnostics in
copy-pass mode.
2006-10-24 Sergey Poznyakoff <gray@gnu.org.ua>
* src/copyout.c (process_copy_out): Add terminating zero to the
link_name.
* tests/symlink.at: New testcase
* tests/Makefile.am: New test symlink.at
* tests/inout.at: Add keywords
* tests/testsuite.at (AT_SKIP_TEST): New macro
New test symlink.at
2006-10-21 Sergey Poznyakoff <gray@gnu.org.ua>
* configure.ac, NEWS: Version 2.7
* gnulib.modules: Add stdint
* src/util.c: Use STRINGIFY_BIGINT to display num_bytes
2006-09-27 Sergey Poznyakoff <gray@gnu.org.ua>
* TODO: Update
* README-alpha: Update
* bootstrap: Imported from tar
* configure.ac: Require autoconf 2.59 and gettext 1.15
* gnulib.modules: add inttypes
* doc/cpio.texi: Minor fixes
* po/Makevars: Remove automatically generated file
* po/.cvsignore: Add Makevars
* lib/.cvsignore: Update
* src/copyin.c, src/copyout.c, src/copypass.c, src/cpio.h,
src/cpiohdr.h, src/defer.c, src/defer.h, src/extern.h,
src/global.c, src/main.c, src/makepath.c, src/tar.c,
src/util.c: Update copyright year.
2006-07-04 Sergey Poznyakoff <gray@gnu.org.ua>
* bootstrap (update_po): Fix single translation update
* lib/Makefile.tmpl: Initialize AM_CPPFLAGS
(noinst_HEADERS): Add system-ioctl.h
Start rewriting using a better suited internal representation for
the file meta-data.
* src/cpiohdr.h (struct old_cpio_header): Remove unused fields
c_mtime, c_filesize and c_name.
(struct old_ascii_header): New data type
(struct new_ascii_header): New data type. Describes the header
structure, not its internal representation.
(struct cpio_file_stat): New data type. Describes internal
representation of a file metadata
* src/copyin.c (from_ascii): New function
Use cpio_file_stat for internal header representation.
* src/copyout.c: Use cpio_file_stat for internal header
representation. Among other things this fixes bug reported by
Peter Vrabec on Mar 2, 2006
(http://lists.gnu.org/archive/html/bug-cpio/2006-03/msg00000.html)
* src/copypass.c: Use cpio_file_stat for internal header
representation.
* src/tar.c: Likewise
* src/util.c: Likewise
* src/defer.c: Likewise
* src/defer.h: Likewise
* src/extern.h: Likewise
(from_ascii): New prototype
(LG_8,LG_16,FROM_OCTAL,FROM_HEX): New defines
* src/main.c: New command line option --HANG (hidden)
2006-03-12 Sergey Poznyakoff <gray@gnu.org.ua>
* tests/Makefile.am (AM_CPPFLAGS): Define LOCALEDIR
2006-02-18 Sergey Poznyakoff <gray@gnu.org.ua>
* gnulib.modules: Add stpcpy. Thanks Benigno B. Junior for
reporting.
* THANKS: Add Benigno B. Junior
* src/makepath.c: Fix indentation.
2005-11-16 Sergey Poznyakoff <gray@gnu.org.ua>
* src/copyout.c (process_copy_out): Fix typo.
2005-11-12 Sergey Poznyakoff <gray@gnu.org.ua>
* bootstrap: Minor fix
* src/copyout.c (write_out_header): Rewritten using separate
functions for each file format. Use to_ascii to convert numbers to
ascii representation. Check for overflows and report them if
appropriate. Return 0 if it is OK to proceed with archiving this
file, 1 otherwise. All callers updated.
* src/extern.h (write_out_header): Return int.
2005-10-28 Sergey Poznyakoff <gray@gnu.org.ua>
* src/util.c: Include paxlib.
* bootstrap: If file `.bootstrap' exists in the cwd and is
readable, prepend its contents to the command line.
Fix Debian bug 335580:
* src/copyout.c (read_for_checksum,write_out_header): CRC is a
32-bit unsigned value. Patch proposed by Jim Castleberry and
Peter Vrabec.
* src/extern.h (crc): Change declaration
* src/global.c: Likewise
* src/tar.c (tar_checksum): Return unsigned int
* THANKS: Add Jim Castleberry
* NEWS: Updated
2005-09-30 Sergey Poznyakoff <gray@gnu.org.ua>
* src/copyout.c (process_copy_out): Discern between original and
(eventually fixed) file name (in tar terminology, `file name'
vs. `member name'.
2005-09-08 Sergey Poznyakoff <gray@gnu.org.ua>
* gnulib.modules: Add utimens
* src/util.c (cpio_safer_name_suffix): Preserve ./ no matter what
the value of strip_leading_dots is.
(set_file_times): New function
* src/extern.h (set_file_times): New function
* src/copyin.c: Use set_file_times() to update file atime/mtime
* src/copyout.c: Likewise.
* src/copypass.c: Likewise.
2005-05-25 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/copyin.c: Use cpio_safer_name_suffix() and CPIO_TRAILER_NAME
define instead of hardcoding the trailer file name.
* src/copyout.c: Likewise.
* src/cpio.h (CPIO_TRAILER_NAME): New define
* src/extern.h (cpio_safer_name_suffix): New proto
* src/tar.c: Use CPIO_TRAILER_NAME define instead of hardcoding
the trailer file name.
* src/util.c (cpio_safer_name_suffix): New function
(add_cdf_double_slashes): Add FIXME warning.
* lib/fatal.c: New file
* lib/Makefile.tmpl (libcpio_a_SOURCES): Add fatal.c
* src/copyout.c: Use error reporting functions from paxlib
* src/makepath.c: Likewise
* src/mt.c: Likewise
* src/main.c (fatal_exit): Moved to lib/fatal.c
2005-05-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/copyin.c (process_copy_in): Use safer_name_suffix no matter
what the value of no_abs_paths_flag. The function knows better
what to do in any case.
* src/copyout.c (process_copy_out): Honor no_abs_paths_flag.
* src/main.c (options): Minor fixes.
2005-05-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* bootstrap (copy_files): Create destination directory if it does
not exist.
Preserve longlong.m4 as longlong_gl.m4
* src/main.c: Include paxlib.h
2005-05-22 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* lib/.cvsignore: Updated
* gnulib.modules: Add hash
* doc/cpio.texi (Reports): New chapter
* lib/Makefile.tmpl: Add new paxutils files.
* po/POTFILES.in: Likewise
* src/copyin.c [!HAVE_LCHOWN] (lchown): Define to 0 to avoid
changing ownership of the target file.
(process_copy_in): Use safer_name_suffix()
* src/main.c (parse_opt): Handle new --absolute-filenames option.
(process_args): Updated
* src/util.c: Rewrite inode lookup/insertion functions using hash
module.
u2005-05-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* configure.ac: Raised version number to 2.6.90
* NEWS: Updated
* src/copyin.c: Use set_perms.
* src/copypass.c: Likewise.
* src/copyout.c (process_copy_out): Use stat_to_cpio() to convert
struct stat to struct new_cpio_header.
* src/defer.h: Remove legacy P_() stuff.
* src/dstring.c: Likewise
* src/extern.h: Likewise
* src/util.c (stat_to_cpio,set_perms): New functions
* doc/.cvsignore: Updated
* lib/.cvsignore: Updated
* tests/.cvsignore: Updated
* .cvsignore: Updated
* COPYING: Added to the repository
2005-05-19 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* po/POTFILES.in: Add paxerror.c paxexit.c paxconvert.c
* bootstrap (copy_files): Accept optional third argument: a prefix
to be appended to destination file names.
Import paxutils/paxlib files.
* lib/Makefile.tmpl (libcpio_a_SOURCES): Add paxerror.c paxexit.c
paxconvert.c
* src/copyin.c: Use paxutils error reporting functions
* src/copyout.c: Likewise
* src/copypass.c: Likewise
* src/util.c: Likewise. Add missing includes
* src/main.c (USAGE_ERROR): Removed
(CHECK_USAGE,parse_opt,process_args): Use error() instead of USAGE_ERROR
(fatal_exit): New function
* src/tar.c (is_tar_filename_too_long): Removed unused variable
* Makefile.am, configure.ac, doc/Makefile.am,
doc/cpio.texi, doc/gendocs_template, headers/Makefile.am,
headers/fnmatch.h, lib/Makefile.tmpl, lib/mkdir.c,
lib/strdup.c, lib/strerror.c, src/Makefile.am,
src/copyin.c, src/copyout.c, src/copypass.c, src/cpio.h,
src/cpiohdr.h, src/defer.c, src/defer.h, src/dstring.c,
src/dstring.h, src/extern.h, src/filemode.c,
src/filetypes.h, src/global.c, src/idcache.c,
src/main.c, src/makepath.c, src/mt.c, src/tar.c,
src/tar.h, src/tarhdr.h, src/userspec.c, src/util.c,
tests/Makefile.am, tests/inout.at, tests/testsuite.at,
tests/version.at: Updated FSF postal mail address.
* bootstrap: Port recent changes from tar bootstrap.
* gnulib.modules: New file
* tests/Makefile.am (genfile_SOURCES,LDADD): Updated
* THANKS: Updated
* configure.ac: Remove check for gethostname, it is never used.
Remove check for setsockopt, it is provided by paxutils.
Fix LFS support issues. Proposed by Peter Vrabec and Dmitry V. Levin
* src/extern.h (copy_files_tape_to_disk, copy_files_disk_to_tape,
copy_files_disk_to_disk): Change num_bytes argument type from
long to off_t.
* src/util.c (copy_files_tape_to_disk, copy_files_disk_to_tape,
copy_files_disk_to_disk, disk_fill_input_buffer,
write_nuls_to_file): Likewise.
(write_nuls_to_file, copy_files_disk_to_tape,
copy_files_disk_to_disk): Handle `off_t num_bytes' properly.
* src/util.c (find_inode_file): Fix typos causing function to
occasionally miss inodes and, therefore, to copy out the same
(hard-linked) file several times to archive. Proposed by Brian
Mays.
2005-03-24 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/main.c (process_args): Fixed discrepancy I have been
overlooking so far: cpio still does not handle --sparse option
the same way tar is handling it. --sparse is allowed in copy-in
and copy-pass modes, just as docs say it. Thanks Dmitry Levin.
* THANKS: Updated
2005-03-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/util.c (disk_buffered_write): Fix typo introduced
2005-01-11.
* src/main.c (process_args): Fixed error message
2005-01-31 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/main.c (main): Remove umask(0). Fixes CAN-1999-1572.
[__TURBOC__,__EMX__]: Removed
* src/copypass.c (process_copy_pass): Set umask 0
* src/copyin.c (process_copy_in): Likewise
* src/util.c (open_archive): Use MODE_RW.
2005-01-11 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* doc/gendocs_template: Template file for gendocs.sh.
* doc/Makefile.am: Use gendocs.sh to generate webdocs.
* doc/cpio.texi: Updated.
* src/copyin.c: Use memset instead of bzero, memmove
(or memcpy, if appropriate), instead of bcopy, and
strchr/strrchr instead of index/rindex.
* src/copypass.c: Likewise.
* src/main.c: Likewise.
* src/makepath.c: Likewise.
* src/tar.c: Likewise.
* src/util.c: Likewise.
(write_nuls_to_file): Made extern. All callers updated
* src/copyout.c: Likewise. Use write_nuls_to_file instead
of explicitely accessing zeros_512
* src/userspec.c: Likewise.
Rename isnumber to isnumber_p. Proposed by
Albert Chin
* src/extern.h (zeros_512): Removed
(write_nuls_to_file): New function
* src/global.c (zeros_512): Removed
2005-01-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* bootstrap: Add 'fileblocks' gnulib module
Create paxutils.m4
* configure.ac: Call cpio_PAXUTILS
* src/main.c: Remove ifdef around setlocale
* src/mt.c: Likewise
2004-12-21 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* configure.ac: New option --enable-mt
Check for locale.h
* doc/cpio.info: Removed
* src/mt.c (main): Use argmatch_invalid()
2004-12-20 Sergey Poznyakoff <gray@Mirddin.farlep.net>
Released version 2.6. Sources up to this point are tagged
release_2_6.
* configure.ac: Raised version number to 2.6
* NEWS: Likewise
* bootstrap (update_po): Give -r to wget. Always remove index.html
Ignore alloca-opt module (it duplicates alloca)
2004-11-23 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/main.c (enum cpio_options): Bugfix: Initialize first enum
value to 256.
* bootstrap: Add unlocked-io
* headers/argp.h: Removed
* headers/getopt.h: Removed
* headers/Makefile.am: Updated
2004-10-14 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/copyout.c: Add trailing slash to directory names in
ustar format.
* src/makepath.c: Removed redeclaration of error().
* src/tar.c: Fixed deviations from POSIX.1-1988:
Properly split long file names. Fill in octal fields with zeros,
not spaces. Save only protection modes, not the whole mode.
* NEWS: Updated
2004-09-08 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* NEWS: Updated
* TODO: Updated
* bootstrap: Install po files by default
* po/LINGUAS: Removed. File is generated automatically
* po/.cvsignore: Updated
* src/copyin.c: Implemented --to-stdout option
* src/copyout.c: Display the annoying 'truncating inode number'
message only if the user wishes it.
* src/extern.h: Added new globals.
* src/global.c: Likewise.
* src/main.c: Added support for --to-stdout and --warning options
* src/tar.c (read_in_tar_header): Use warn_junk_bytes()
* src/util.c (create_all_directories): Use dir_name.
* configure.ac: Added support for the test suite
* Makefile.am: Likewise
* tests: New directory
* tests/.cvsignore: New file
* tests/Makefile.am: New file
* tests/testsuite.at: New file
* tests/inout.at: New file
* tests/version.at: New file
* tests/atlocal.in: New file
2004-09-07 Sergey Poznyakoff <gray@Mirddin.farlep.net>
* src/main.c (process_args): Bugfix. Allow extra arguments
in copy_in mode.
* src/util.c (write_nuls_to_file): Use buffered I/O. All
callers changed. Thanks Matthew Braithwaite <mab@cnet.com>
for noticing.
Bugfix: extra_bytes was mistakenly used instead of blocks.
* THANKS: Added Matthew Braithwaite.
2004-09-06 Sergey Poznyakoff <gray@Mirddin.farlep.net>
Started merging with tar into paxutils. Sources before
this point are tagged alpha-2_50_90.
* bootstrap: New file
* autogen.sh: Removed
* Makefile.am: Updated
* NEWS: Updated
* README-alpha: Updated
* configure.ac: Updated
* doc/cpio.1: Updated
* po/POTFILES.in: Updated
* src/Makefile.am: Updated
* src/error.c: Removed
* src/dirname.c: Likewise
* src/xmalloc.c: Likewise
* src/stripslash.c: Likewise
* src/xstrdup.c
* src/gettext.h: Likewise
* src/system.h: Likewise
* src/rmt.h: Likewise
* src/getopt.c: Likewise
* src/getopt1.c: Likewise
* src/bcopy.c: Likewise
* src/fnmatch.c: Likewise
* src/mkdir.c: Likewise
* src/strdup.c: Likewise
* src/argp-ba.c: Likewise
* src/argp-eexst.c: Likewise
* src/argp-fmtstream.c: Likewise
* src/argp-fs-xinl.c: Likewise
* src/argp-help.c: Likewise
* src/argp-parse.c: Likewise
* src/argp-pv.c: Likewise
* src/argp-pvh.c: Likewise
* src/argp-xinl.c: Likewise
* src/pin.c: Likewise
* src/alloca.c: Likewise
* src/argmatch.c: Likewise
* src/rmt.c: Likewise
* src/rtapelib.c: Likewise
* src/strerror.c: Likewise
* src/copyin.c: Switched to ANSI C (sigh)
* src/copyout.c: Likewise
* src/copypass.c: Likewise
* src/defer.c: Likewise
* src/defer.h: Likewise
* src/dstring.c: Likewise
* src/dstring.h: Likewise
* src/extern.h: Likewise
* src/filemode.c: Likewise
* src/global.c: Likewise
* src/idcache.c: Likewise
* src/main.c: Likewise
* src/makepath.c: Likewise
* src/mt.c: Likewise
* src/tar.c: Likewise
* src/userspec.c: Likewise
* src/util.c: Likewise
* lib: New directory
* lib/Makefile.tmpl: New file
* lib/bcopy.c: Moved from ../src
* lib/mkdir.c: Likewise.
* lib/strdup.c: Likewise.
* lib/strerror.c: Likewise.
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 multiply (hard) linked
device files; minor changes to support HPUX format archives
(slightly broken?) System V.4 posix tar archives and HPUX
posix tar archives.
* Makefile.in: New files defer.o, defer,c and defer.h; added
-DSYMLINK_USES_UMASK and -DHPUX_CDF comments; changed dist rule
to use gzip with tar, instead of compress.
* copyin.c: changes for new arf_hpbinary and arf_hpascii formats;
HPUX CDF's; DEBUG_CPIO; fixes to properly handle multiple
links in newc and crc format archives (new routines defer_copyin(),
create_defered_links(), create_final_defers()); move most
multiple (hard) link code to new routines link_name() and
link_to_maj_min_ino(); use new macro UMASKED_SYMLINK instead of
symlink().
* copyout.c: fixes to properly handle multiple links in newc
and crc format archives (new routines last_link(),
count_defered_links_to_dev_ino(), add_link_defer(),
writeout_other_defers(), writeout_final_defers(),
writeout_defered_file()); support for new arf_hpbinary and
arf_hpascii formats; support for HPUX CDF's.
* copypass.c: move most multiple link code to new routines
link_name() and link_to_maj_min_ino(); use new macro UMASKED_SYMLINK
instead of symlink(); support for HPUX CDF's.
* extern.h: added arf_hpascii and arf_hpbinary archive enum types;
added debug_flag.
* global.c: added debug_flag.
* main.c: added debug_flag; support for hpodc and hpbin formats.
* makepath.c: split from standard makpath.c to add support
for HPUX CDF's.
* mt.c: added !defined(__osf__) (from Andrew Marquis
<amarquis@genome.wi.mit.edu>).
* system.h: new macro UMASKED_SYMLINK
* tar.c: minor changes to read (slightly broken?) System V.4 posix
tar archives and HPUX posix tar archives.
* util.c: HPUX CDF support (including new routines
add_cdf_double_slashes() and islasparentcdf()); new routine
umasked_symlink().
Sun Mar 14 23:00:14 1993 Jim Meyering (meyering@comco.com)
* copypass.c (process_copy_pass): Use <=, not just <, when comparing
mtimes. From Pieter Bowman <bowman@math.utah.edu>.
Fri Jan 15 14:35:37 1993 David J. MacKenzie (djm@kropotkin.gnu.ai.mit.edu)
* copyin.c: Move include of fnmatch.h to get right FNM* macros.
Tue Nov 24 08:45:32 1992 David J. MacKenzie (djm@goldman.gnu.ai.mit.edu)
* Version 2.2.
* copyout.c (process_copy_out): Add parens for gcc -Wall.
From Jim Meyering.
* system.h: Use HAVE_FCNTL_H, not USG.
* dstring.c, mt.c, system.h: Use HAVE_STRING_H, not USG.
Fri Nov 20 22:47:18 1992 David J. MacKenzie (djm@goldman.gnu.ai.mit.edu)
* copyin.c (read_in_binary): Copy the dev and ino that are
already in `file_hdr' into `short_hdr'.
From dao@abars.att.com (David A Oshinsky).
* system.h [!_POSIX_VERSION]: Declare lseek as off_t, not long.
From Karl Berry.
Wed Oct 14 13:53:41 1992 David J. MacKenzie (djm@goldman.gnu.ai.mit.edu)
* Version 2.1.
Tue Oct 13 22:51:34 1992 David J. MacKenzie (djm@goldman.gnu.ai.mit.edu)
* main.c: Add --swap equivalent to -b.
* mt.c: Add f_force_local variable and -V --version option.
Fri Oct 2 18:42:27 1992 David J. MacKenzie (djm@kropotkin.gnu.ai.mit.edu)
* main.c (long_opts, usage): Add --force-local option.
Thu Oct 1 23:23:43 1992 David J. MacKenzie (djm@goldman.gnu.ai.mit.edu)
* main.c (process_args) [__MSDOS__]: Don't call geteuid.
* copyin.c (read_in_{old,new}_ascii): Use `l' for sscanf into longs.
* copyout.c (write_out_header): Ditto for sprintf.
* global.c, extern.h: Make input_size and output_size long.
Thu Sep 10 23:39:30 1992 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* global.c, extern.h: Add new var f_force_local to work with
rmt.h change from tar.
Sun Aug 23 00:18:20 1992 David J. MacKenzie (djm@churchy.gnu.ai.mit.edu)
* Version 2.0.
* tar.c (otoa): Compute value in an unsigned long, not an int.
* copyout.c (write_out_header) [__MSDOS__]: Don't use dev_t.
* main.c (process_args): By default, don't chown for non-root users.
Sat Aug 22 14:17:54 1992 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* global.c, extern.h: Use uid_t and gid_t.
* main.c (main) [__EMX__]: Expand wildcards.
* system.h [__EMX__]: Alias some error names. From Kai Uwe Rommel.
* extern.h [__STDC__]: Use prototypes.
* copyin.c (process_copy_in), copyout.c (process_copy_out),
copypass.c (process_copy_pass): Open all files with O_BINARY.
Add cast to chmod call.
* util.c: Add cast to bcopy calls. Make hash_insert static.
From Kai Uwe Rommel.
Thu Aug 20 22:03:49 1992 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* util.c (peek_in_buf): Don't print "end of file" before
getting the next reel of medium.
* copyin.c (read_in_old_ascii): Allocate space for NUL terminator.
Print newline for dot line when done, even if appending.
Thu Jul 23 16:34:53 1992 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* tar.c (write_out_tar_header, read_in_tar_header)
[__MSDOS__]: Don't try to get user and group names.
* extern.h: Don't declare the functions to do it (need uid_t).
* main.c [__MSDOS__]: Ignore the -R option.
* system.h: Define makedev if defining major and minor.
* copyin.c, copyout.c [__MSDOS__]: setmode on archive_des, not
0 and 1.
Sat Jul 18 14:30:55 1992 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* tar.c, stripslash.c, userspec.c, cpiohdr.h, tar.h, tarhdr.h,
system.h: New files.
* Move portability stuff from various files to system.h.
* cpio.h: Rename header structure and members, and add
new structure for SVR4 format.
* copyin.c, copyout.c: Use the new structure internally, the
old one only for I/O in the old formats.
* copyin.c (read_in_header): Recognize the new archive formats.
(read_in_new_ascii, read_pattern_file, skip_padding): New functions.
(swab_array): Do the swapping using char pointers instead of
bitwise arithmetic.
(process_copy_in): Handle byte and halfword swapping and new formats.
Ok if a directory we want to make already exists, but set its perms.
Do chmod after chown to fix any set[ug]id bits.
Use `struct utimbuf' instead of a long array.
* copyout.c (write_out_header): Handle new formats.
(process_copy_out): Use `struct utimbuf'.
Handle appending and new formats.
Remove any leading `./' from filenames.
(read_for_checksum, clear_rest_of_block, pad_output): New functions.
* copypass.c (process_copy_pass): Use `struct utimbuf'.
Ok if a directory we want to make already exists, but set its perms.
Do chmod after chown to fix any set[ug]id bits.
Don't change perms of `.'.
* extern.h, global.c: Replace the separate format flags with
one variable. Add new variables for the new options.
* main.c: Add new options -A --append, -H --format, -C --io-size,
-M --message, --no-preserve-owner, -R --owner, -E --pattern-file,
-V --dot, -s --swap-bytes, -S --swap-halfwords, -b, -I, -k, -O.
(usage): Document them.
(process_args): Recognize them. Use open_archive.
(initialize_buffers): Allow room for tar archives and double buffers.
* util.c (empty_output_buffer_swap): New function.
(empty_output_buffer): Call it if swapping current file.
Check additional end of media indicators.
(swahw_array, peek_in_buf, prepare_append, open_archive,
set_new_media_message): New functions.
(fill_input_buffer): Don't print error message if end of media.
(toss_input): Don't seek, always read.
(copy_files): Update crc if needed.
(find_inode_file, add_inode): Check major and minor numbers as
well as dev.
(get_next_reel): Prompt user if archive name is unknown.
Print fancy messages.
Close the archive and reopen it.
Above primarily from John Oleynick <juo@klinzhai.rutgers.edu>.
* util.c (find_inode_file): Use modulus when computing initial
loop index.
(add_inode): Zero out new entry.
From scott@sctc.com (Scott Hammond).
* cpio.h, copyin.c, copyout.c: Rename `struct cpio_header'
members from h_foo to c_foo.
Wed May 20 00:09:26 1992 David J. MacKenzie (djm@churchy.gnu.ai.mit.edu)
* copyin.c: If we include a header file specifically to get
major et al., assume we have them.
Mon Mar 9 19:29:20 1992 David J. MacKenzie (djm@nutrimat.gnu.ai.mit.edu)
* mt.c (main): rmtclose the tape file descriptor.
* main.c (main): rmtclose the archive, if not in copy-pass mode.
* util.c (create_all_directories): Don't print a message when
creating a directory, for UNIX compat.
* copyin.c (process_copy_in), copypass.c (process_copy_pass):
Skip file if it has the same timestamp as existing file, not just
if it is older than existing file, for UNIX compat.
Tue Mar 3 12:06:58 1992 David J. MacKenzie (djm@wookumz.gnu.ai.mit.edu)
* main.c, mt.c (usage): Document long options as starting with
-- instead of +.
* extern.h: Only declare lseek if not _POSIX_VERSION.
Tue Dec 24 00:19:45 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
* copyin.c: Use MAJOR_IN_MKDEV and MAJOR_IN_SYSMACROS instead
of USG and _POSIX_VERSION to find major and minor macros.
* mt.c: Use unistd.h and stdlib.h if available.
* copyin.c, copyout.c, copypass.c, util.c, extern.h: Change
POSIX ifdefs to HAVE_UNISTD_H and _POSIX_VERSION.
Sun Aug 25 06:31:08 1991 David J. MacKenzie (djm at apple-gunkies)
* Version 1.5.
* bcopy.c: New file (moved from util.c).
* mt.c (print_status): Not all hpux machines have mt_fileno
and mt_blkno; rather than trying to track HP's product line,
just assume none of them have them.
* util.c (copy_buf_out, copy_in_buf): Use more efficient
copying technique for a big speedup.
Fri Aug 2 04:06:45 1991 David J. MacKenzie (djm at apple-gunkies)
* configure: Support +srcdir. Create config.status.
Remove it and Makefile if interrupted while creating them.
Thu Jul 18 09:43:40 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
* Many files: use __MSDOS__ instead of MSDOS.
* util.c, configure: Use NO_MTIO instead of HAVE_MTIO, to keep
up with tar and rtapelib.c.
Mon Jul 15 13:45:30 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
* configure: Also look in sys/signal.h for signal decl.
Thu Jul 11 01:50:32 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
* Version 1.4.
* configure: Remove /etc and /usr/etc from PATH to avoid
finding /etc/install.
Wed Jul 10 01:40:07 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
* makefile.pc: Rewrite for Turbo C 2.0.
* util.c [__TURBOC__] (utime): New function.
* alloca.c, tcexparg.c: New files.
* extern.h [STDC_HEADERS]: Don't declare malloc and realloc.
* main.c [MSDOS]: Make binary mode the default.
* copyin.c, copyout.c: Make stdin or stdout binary mode as
appropriate (so cpio archives don't get corrupted).
* Many files: Use <string.h> if STDC_HEADERS as well as if USG.
* configure, Makefile.in: $(INSTALLPROG) -> $(INSTALL),
$(INSTALLTEXT) -> $(INSTALLDATA).
Mon Jul 8 23:18:28 1991 David J. MacKenzie (djm at wookumz.gnu.ai.mit.edu)
* configure: For some library functions that might be missing,
conditionally add the .o files to Makefile instead of
defining func_MISSING.
* mkdir.c: Renamed from mkrmdir.c.
Sat Jul 6 02:27:22 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
* configure: echo messages to stdout, not stderr.
Use a test program to see if alloca needs -lPW.
Thu Jun 27 16:15:15 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
* copyin.c (process_copy_in), copyout.c (process_copy_out),
copypass.c (process_copy_pass): Check close return value for
delayed error notification because of NFS.
Thu Jun 20 02:43:33 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
* configure: Include $DEFS when compiling test programs.
* util.c: Only declare getpwuid and getgrgid if not POSIX.
* Version 1.3.
* copyin.c: Use time_t, not long, for time values.
* mt.c (print_status): Special cases for HP-UX and Ultrix.
* util.c: Compile bcopy if USG or STDC_HEADERS, not BCOPY_MISSING.
Tue Jun 11 16:40:02 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
* copyin.c: Don't include sys/sysmacros.h if _POSIX_SOURCE.
* copyin.c, copyout.c, copypass.c: Don't include sys/file.h if POSIX.
* util.c: Include sys/types.h before, not after, pwd.h and grp.h.
* configure: New shell script to aid configuration and create
Makefile from Makefile.in.
* copyin.c (process_copy_in): Use POSIX.2 fnmatch instead of
glob_match.
Mon Jun 10 22:11:19 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
* global.c, extern.h: New variable, name_end.
* main.c (process_args, usage): Add -0 +null option to set it.
* copypass.c (process_copy_pass), copyout.c (process_copy_out):
Use it.
* dstring.c (ds_fgetstr): New function made from ds_fgets.
(ds_fgets, ds_fgetname): Implement as front ends to ds_fgetstr.
Sun Jun 2 15:45:24 1991 David J. MacKenzie (djm at wheat-chex)
* most files: use GPL version 2.
Sat May 18 11:39:22 1991 David J. MacKenzie (djm at geech.gnu.ai.mit.edu)
* copyin.c, copypass.c: Take out #ifdef MSDOS around chown.
* util.c [MSDOS]: Provide dummy chown.
Fri May 17 21:29:05 1991 David J. MacKenzie (djm at churchy.gnu.ai.mit.edu)
* Version 1.2.
* makefile.pc, cpio.cs: Update for new source and object files.
Fri Mar 15 05:48:36 1991 David J. MacKenzie (djm at geech.ai.mit.edu)
* global.c, extern.h: New variable `archive_desc'.
* main.c (process_args): Set it.
* copyout.c (process_copy_out), copyin.c (process_copy_in):
Use it.
* copyout.c (process_copy_out), copyin.c (process_copy_in):
Remote tapes are special and not seekable; don't fstat them.
* main.c (main, usage): Add -F, +file option. Use rmtopen.
(main): Exit after printing version number.
* util.c (empty_output_buffer): Use rmtwrite instead of write.
(fill_input_buffer): Use rmtread instead of read.
(tape_offline): Use rmtioctl instead of ioctl.
Test HAVE_MTIO instead of MTIO_MISSING, for tar compatibility.
Thu Mar 14 17:49:57 1991 David J. MacKenzie (djm at geech.ai.mit.edu)
* util.c (create_all_directories): Use make_path to do the work.
Sat Jan 12 15:32:15 1991 David J. MacKenzie (djm at geech.ai.mit.edu)
* copyin.c, copyout.c, copypass.c, util.c: Only declare
`errno' if not MSDOS. Some Unix errno.h do, some don't . . . .
* global.c, extern.h: Make `input_size' and `output_size'
unsigned, for 16 bit machines.
* copyin.c (print_name_with_quoting): All non-ctrl chars are
printable on MS-DOS.
* util.c (empty_output_buffer): Never make sparse files;
can create unrunnable executables.
* copyin.c, copyout.c, copypass.c: Callers changed.
* util.c (finish_output_file): Function removed.
Tue Nov 6 15:47:16 1990 David J. MacKenzie (djm at apple-gunkies)
* copyin.c, util.c, extern.h: Rename copystring to xstrdup.
Mon Oct 29 02:24:41 1990 David J. MacKenzie (djm at apple-gunkies)
* util.c (empty_output_buffer): Only make sparse files if
NO_SPARSE_FILES is undefined, to accomodate dumb kernels.
Wed Jul 25 18:48:35 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
* util.c (getuser, getgroup): Make uid and gid unsigned short,
not int.
Sat Jul 21 00:44:44 1990 David J. MacKenzie (djm at apple-gunkies)
* copyin.c, copyout.c, copypass.c, util.c, cpio.h: Add ifdefs
for MSDOS.
Sun Jul 15 23:51:48 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
* copyin.c, copyout.c, copypass.c, global.c, extern.h, util.c:
Use longs where appropriate, for 16 bit machines.
Sun Jul 8 22:58:06 1990 David J. MacKenzie (djm at apple-gunkies)
* main.c (process_args, usage): Change -b option to -O (old), to
allow adding byte swapping later.
Sat Jul 7 14:48:35 1990 David J. MacKenzie (dave at edfmd)
* Version 1.1.
* cpio.h: Make `mtime' and `filesize' unsigned long.
* copyin.c (read_in_binary), copyout.c (write_out_header):
High short-word of `mtime' and `filesize' always comes first.
* (read_in_ascii, read_in_binary): New functions, from code in
read_in_header.
(read_in_header): Search for valid magic number, then fill in
rest of header using read_in_ascii and read_in_binary.
* global.c, extern.h: New variable, `binary_flag'.
* main.c (process_args): Recognize new -b +binary option.
* util.c [BCOPY_MISSING] (bcopy): New function.
Wed Jul 4 00:40:58 1990 David J. MacKenzie (djm at apple-gunkies)
* main.c (process_args): Add local pointers to functions to
work around a pcc bug found on a Convex.
* copyin.c (process_copy_in), util.c (toss_input,
create_all_directories, add_inode): Don't use `index' as a
variable name.
Tue Jul 3 02:33:36 1990 David J. MacKenzie (djm at apple-gunkies)
* version 1.0.
Mon Jul 2 23:18:56 1990 David J. MacKenzie (djm at twiddle)
* copyin.c (process_copy_in), copyout.c (process_copy_out),
copypass.c (process_copy_pass): Print "1 block", not "1 blocks".
* copyin.c (process_copy_in), copypass.c (process_copy_pass):
Unlink existing dest. file unless either it is newer and
not unconditional, or it is a directory.
Mon Jul 2 03:57:41 1990 David J. MacKenzie (dave at edfmd)
* util.c (xrealloc): New function.
* dstring.c (ds_resize): Use xrealloc instead of free and
xmalloc. Never shrink the string.
* copypass.c (process_copy_pass): More efficient
string handling while constructing output filename.
* global.c, extern.h, main.c, cpio.h: Change from an enum,
`copy_command', to a pointer to a void function, `copy_function'.
* cpio.h (struct cpio_header): Make most fields unsigned.
Rename h_filesize to h_filesizes and h_mtime to h_mtimes, and
add new `long' fields with the old names at the end of the
structure.
* copyin.c (read_in_header): Set the long fields from the
short arrays, making sure longs are aligned properly.
(process_copy_in, long_format): Use the long fields.
* copyout.c (write_out_header): Set the short arrays from the
long fields, making sure longs are aligned properly.
(process_copy_out): Use the long fields.
* global.c, extern.h: New variable `output_is_seekable'.
* util.c (empty_output_buffer): If output_is_seekable, use
lseek to write blocks of zeros.
(finish_output_file): New function.
* copyin.c (process_copy_in), copyout.c (process_copy_out),
copypass.c (process_copy_pass): Set `output_is_seekable'
correctly and call finish_output_file.
* main.c (initialize_buffers): Allocate space for sentinel in
`output_buffer'.
* global.c, extern.h: New variable `numeric_uid'.
* main.c (process_args): Accept -n +numeric-uid-gid option, like ls.
* copyin.c (long_format): Use numeric_uid.
* copyin.c (process_copy_in), copyout.c (process_copy_out),
copypass.c (process_copy_pass): Don't (for verbose) print the
names of files that are not copied because of errors. Try to
create missing directories for all file types. Free temporary
buffers on error.
Sat Jun 30 14:28:45 1990 David J. MacKenzie (djm at apple-gunkies)
* version.c: New file.
* main.c: Add -V, +version option.
* Makefile [dist]: Extract version number from version.c.
Sat Jun 30 12:44:47 1990 David J. MacKenzie (dave at edfmd)
* global.c, extern.h, copyin.c, copyout.c, util.c: Rename
`{input,output}_is_regular' to `{input,output}_is_special' and
reverse the truth value.
* global.c, extern.h: New variable `input_is_seekable' to
control whether to skip data with lseek or read.
* copyin.c (process_copy_in): Set it.
* util.c (toss_input): Use it.
* global.c, extern.h: New variable `xstat' that selects stat
or lstat for input files.
* main.c (process_args): New option -L, +dereference to set
xstat to stat instead of lstat.
(usage): Document it.
* copyout.c (process_copy_out), copypass.c
(process_copy_pass): Use *xstat on input file.
Sat Jun 30 01:53:12 1990 David J. MacKenzie (dave at edfmd)
* dstring.c (ds_init): Return void because return value was
never used.
(ds_resize): Ditto, and free old value instead of new one.
* util.c (empty_output_buffer, fill_input_buffer,
copy_out_buf, copy_in_buf, toss_input, copy_files): Return
void instead of an error value and make errors fatal
immediately instead of several levels up, to prevent printing
of multiple error messages by different levels of functions.
* copyin.c (read_in_header): Return void, because the error
handling all happens at lower levels.
(print_name_with_quoting): New function.
(long_format): Call print_name_with_quoting. Take additional
arg for name of linked-to file, and print it if nonzero.
(process_copy_in): For verbose listing of symlinks, read in
the linkname and pass it to long_format.
* extern.h: Declare some more functions.
Thu Jun 28 16:07:15 1990 David J. MacKenzie (dave at edfmd)
* copypass.c (process_copy_pass): Warn about unknown file types.
* copyout.c (process_copy_out): Check fstat return for error.
Record filesize of 0 for special files. Warn about unknown
file types.
* copyin.c (process_copy_in): Warn about unknown file types.
(read_in_header): Warn about byte-reversed binary headers.
Sat Jun 23 22:50:45 1990 David J. MacKenzie (dave at edfmd)
* main.c (main): Set umask to 0 so permissions of created
files are preserved.
* copyin.c, copyout.c, copypass.c, util.c: Pass file
descriptors as ints, not pointers to ints.
Cast file timestamps and sizes to long *, not int *, for 16
bit machines.
Use lstat instead of stat, if available.
Handle FIFO's, sockets, and symlinks, if supported by O.S.
* copyin.c (process_copy_in), copyout.c (process_copy_out):
Don't consider FIFO'S, sockets, etc. to be possible tape drives.
* util.c (create_all_directories): Fix incorrect loop
termination check. Only copy string if it contains slashes.
Don't check whether directory "" exists.
(tape_offline): Code moved from get_next_reel.
(get_next_reel): Print message before taking tape offline.
Read a line of arbitrary length.
* copyout.c, copyin.c, copypass.c: Always use utime, not utimes.
* copyin.c (swab_short): New macro.
(swab_array): New function.
(read_in_header): In binary mode, if a byte-swapped header is
read, swap the bytes back.
(process_copy_in, process_copy_pass): Don't stat each file to
create unless !unconditional_flag. Create device files correctly.
Don't temporarily allow files being created to be read by
other users. Don't unnecessarily chmod special files.
Thu May 31 20:51:43 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
* copyin.c (long_format): Use mode_string to format
file protections instead of doing it ourselves.
(protections): Function removed.
Sat Apr 14 02:31:01 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
* cpio.h (struct cpio_header): Make inode, mode, uid, gid
fields unsigned.
* util.c (getgroup): New function.
* copyin.c (long_format): Print group name of files.
Print file size, etc. as unsigned integers, not signed.
* main.c (process_args): If -t is given and neither -i, -o, or
-p is given, assume -i.
* Add -f, +nonmatching option.
* main.c: Rename +out to +create, +in to +extract,
+modification-time to +preserve-modification-time,
+pass to +pass-through.
* copyin.c (process_copy_in), copypass.c (process_copy_pass):
Don't complain in chown fails because the user doesn't have
permission.
Fri Apr 13 13:53:20 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
* Add ifdefs for USG/Xenix.
* util.c (cpio_error): Function removed.
* Use error instead of cpio_error, so system error messages
will be included.
* cpio.h: Rename 'hdr_struct' to 'struct cpio_header'.
* Move definition of xmalloc from dstring.c to util.c.
* global.c, extern.c: Add global `program_name'.
* main.c (main): Set program_name.
(process_args): Rename +reset-atime to +reset-access-time,
+table to +list.
Have +block-size take an argument.
Thu Apr 12 13:33:32 1990 David J. MacKenzie (djm at rice-chex)
* util.c (find_inode_file): Make inode an int, not a short.
* Make functions that don't return a value have type void.
Add some casts to function calls.
Wed Apr 11 14:55:28 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
* main.c (process_args): -i, -o, and -p don't take arguments.
* main.c (process_args): Get the non-option args from the
correct elements of argv.
Tue Apr 10 00:20:26 1990 David J. MacKenzie (djm at albert.ai.mit.edu)
* Indent source code and update copyrights.
* cpio.c (usage): Change `collection' to `archive' in message.
Thu Dec 28 03:03:55 1989 David J. MacKenzie (djm at hobbes.ai.mit.edu)
* dstring.c (xmalloc): Don't return a null pointer if size is 0,
on the assumption that trying to allocate 0 bytes is a bug that
should be trapped.
Wed Dec 20 03:24:48 1989 David J. MacKenzie (djm at hobbes.ai.mit.edu)
* All files: Change from GNU CPIO General Public License to
GNU General Public License.
Mon Dec 18 13:18:36 1989 David J. MacKenzie (djm at hobbes.ai.mit.edu)
* Makefile: Add clean target and defines for CC and LDFLAGS.
Add dist target and SRCS, DISTFILES macros. Add tags and TAGS targets.
* dstring.c (ds_fgets): Read characters into an int, not char.
(xmalloc): New function.
(out_of_memory): Function removed.
Global: use xmalloc instead of malloc and out_of_memory.
* extern.h, global.c: Make flag variables ints instead of chars for
compatibility with getopt_long.
* extern.h: Declare more functions.
* main.c (usage): Put the whole usage message into a single string
and fix errors.
* util.c (create_all_directories): Remove unused variable.
(get_next_reel): Ditto.
* dstring.h: Declare function.
Sat Dec 2 13:22:37 1989 David J. MacKenzie (djm at hobbes.ai.mit.edu)
* main.c: Change +copy-pass option to +pass, +copy-in to +in,
+copy-out to +out, and +mkdir to +make-directories, and add null
option to terminate table.
(process_args): Use the same code to handle long and short named
options.
(usage): Mention long options in message.
Local Variables:
mode: change-log
version-control: never
buffer-read-only: t
End:
|