From: Mark Wooding Date: Mon, 7 Mar 2022 00:36:12 +0000 (+0000) Subject: dvd-sector-copy.c: Add missing handler for the `-i' option. X-Git-Url: https://git.distorted.org.uk/~mdw/dvdrip/commitdiff_plain/040a38df0811338ccb100506cc022da9c8a32176?ds=sidebyside dvd-sector-copy.c: Add missing handler for the `-i' option. --- diff --git a/dvd-sector-copy.c b/dvd-sector-copy.c index cdd2849..cb43588 100644 --- a/dvd-sector-copy.c +++ b/dvd-sector-copy.c @@ -1059,6 +1059,7 @@ int main(int argc, char *argv[]) mapfile = optarg; break; case 'c': f |= f_continue; break; + case 'i': f |= f_checkid; break; case 'r': start = 0; end = -1; if (parse_range(optarg, PRF_HYPHEN, &start, &end))