aboutsummaryrefslogtreecommitdiff
path: root/listamsb.c
diff options
context:
space:
mode:
authorB. Watson <urchlay@slackware.uk>2025-03-13 17:08:50 -0400
committerB. Watson <urchlay@slackware.uk>2025-03-13 17:08:50 -0400
commite4501a71b6af985fbf61d52b953140d73839f832 (patch)
treebb1d5d8b887e1114ef40d9584e673ae565b3c773 /listamsb.c
parentf89321bf3cbc3e27c918ce8c16b3fe54abf83d89 (diff)
downloadbw-atari8-tools-e4501a71b6af985fbf61d52b953140d73839f832.tar.gz
listamsb: warn if list mode options used with -U/-C/-D, including a8cat options.
Diffstat (limited to 'listamsb.c')
-rw-r--r--listamsb.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/listamsb.c b/listamsb.c
index 4fd1903..397e1fd 100644
--- a/listamsb.c
+++ b/listamsb.c
@@ -896,7 +896,7 @@ void parse_args(int argc, char **argv) {
}
if((unlock_mode + crunch + decrunch) > 1) {
- os_err("only one of -C, -D, -U may be used");
+ os_err("only one of -C, -D, -L, -U may be used");
}
if(keep_rems && !decrunch) {
@@ -904,8 +904,8 @@ void parse_args(int argc, char **argv) {
}
if(unlock_mode || crunch || decrunch) {
- if(!initial_eol || check_only || raw_output || ropt) {
- warn("-a, -c, -n, -r options ignored with -U, -C, or -D");
+ if(!initial_eol || check_only || raw_output || ropt || a8catopt) {
+ warn("-[acimnrstu] options ignored with -U, -C, or -D");
}
}