aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--archival/cpio.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/archival/cpio.c b/archival/cpio.c
index 3b1550720..540218cb2 100644
--- a/archival/cpio.c
+++ b/archival/cpio.c
@@ -23,7 +23,7 @@
23//config: cpio has 110 bytes of overheads for every stored file. 23//config: cpio has 110 bytes of overheads for every stored file.
24//config: 24//config:
25//config: This implementation of cpio can extract cpio archives created in the 25//config: This implementation of cpio can extract cpio archives created in the
26//config: "newc" or "crc" format, it cannot create or modify them. 26//config: "newc" or "crc" format.
27//config: 27//config:
28//config: Unless you have a specific application which requires cpio, you 28//config: Unless you have a specific application which requires cpio, you
29//config: should probably say N here. 29//config: should probably say N here.
@@ -51,10 +51,10 @@
51//usage: " [-ti"IF_FEATURE_CPIO_O("o")"]" IF_FEATURE_CPIO_P(" [-p DIR]") 51//usage: " [-ti"IF_FEATURE_CPIO_O("o")"]" IF_FEATURE_CPIO_P(" [-p DIR]")
52//usage: " [EXTR_FILE]..." 52//usage: " [EXTR_FILE]..."
53//usage:#define cpio_full_usage "\n\n" 53//usage:#define cpio_full_usage "\n\n"
54//usage: "Extract or list files from a cpio archive" 54//usage: "Extract (-i) or list (-t) files from a cpio archive"
55//usage: IF_FEATURE_CPIO_O(", or" 55//usage: IF_FEATURE_CPIO_O(", or"
56//usage: "\ncreate an archive" IF_FEATURE_CPIO_P(" (-o) or copy files (-p)") 56//usage: "\ntake file list from stdin and create an archive (-o)"
57//usage: " using file list on stdin" 57//usage: IF_FEATURE_CPIO_P(" or copy files (-p)")
58//usage: ) 58//usage: )
59//usage: "\n" 59//usage: "\n"
60//usage: "\nMain operation mode:" 60//usage: "\nMain operation mode:"