From 794f3f9f1cab683c177956180fc9bffbcb5a6745 Mon Sep 17 00:00:00 2001 From: Mark Wooding Date: Sat, 19 Feb 2022 15:23:04 +0000 Subject: [PATCH 1/1] dvd-sector-copy.c: Use the correct character to match comments. Oops. --- dvd-sector-copy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dvd-sector-copy.c b/dvd-sector-copy.c index 86540e0..f70563c 100644 --- a/dvd-sector-copy.c +++ b/dvd-sector-copy.c @@ -934,7 +934,7 @@ static int parse_range(const char *p, unsigned f, { rc = -1; goto end; } if (!(f&PRF_HYPHEN)) while (ISSPACE(*p)) p++; - if (*p && ((f&PRF_HYPHEN) || *p != '=')) { rc = -1; goto end; } + if (*p && ((f&PRF_HYPHEN) || *p != '#')) { rc = -1; goto end; } rc = 0; end: -- 2.11.0