summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCarsten Leonhardt <leo@debian.org>2024-01-08 10:40:21 +0100
committerCarsten Leonhardt <leo@debian.org>2024-01-08 10:40:21 +0100
commit04115f9f67a1ae199e456d4303a7679c172a3fdc (patch)
treef3194075c63ad46c3bc8f9ed2a15051d20e81e4a
parent42d0b414396ff29bff26fb02518f28590a97788a (diff)
Fix scsitape usage message
Last-Update: 2020-11-01 Add the "erase" operation to the usage message of scsitape. (Hint found at Rosa Linux) Gbp-Pq: Name 008-fix-scsitape-usage-message
-rw-r--r--scsitape.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/scsitape.c b/scsitape.c
index dd52dd5..b55ca7c 100644
--- a/scsitape.c
+++ b/scsitape.c
@@ -63,7 +63,7 @@
#endif
void Usage(void) {
- FatalError("Usage: scsitape -f <generic-device> <command> where <command> is:\n setblk <n> | fsf <n> | bsf <n> | eod | rewind | eject | mark <n> |\n seek <n> | read [<blksize> [<numblocks]] | write [<blocksize>] \n");
+ FatalError("Usage: scsitape -f <generic-device> <command> where <command> is:\n setblk <n> | fsf <n> | bsf <n> | eod | rewind | eject | erase |\n mark <n> | seek <n> | read [<blksize> [<numblocks]] | write [<blocksize>]\n");
}
#define arg1 (arg[0]) /* for backward compatibility, sigh */