mirror of
https://github.com/opnsense/src.git
synced 2026-06-11 01:30:30 -04:00
etdump: Fix the file name included in the could not open error message
If only one file is passed, this reads the terminating NULL and so
prints (null). If multiple files are passed then this always prints the
second file, which may or may not exist (and will be particularly
confusing if it does exist since the output will include the dump of the
second file).
MFC after: 1 week
(cherry picked from commit 340cebe990)
This commit is contained in:
parent
5272c66a00
commit
8599e69d56
1 changed files with 1 additions and 1 deletions
|
|
@ -262,7 +262,7 @@ main(int argc, char **argv)
|
|||
} else {
|
||||
iso = fopen(argv[i], "r");
|
||||
if (iso == NULL)
|
||||
err(1, "could not open %s", argv[1]);
|
||||
err(1, "could not open %s", argv[i]);
|
||||
}
|
||||
dump_eltorito(iso, argv[i], outfile, outputter);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue