summaryrefslogtreecommitdiffstats
path: root/demux/cue.c
diff options
context:
space:
mode:
Diffstat (limited to 'demux/cue.c')
-rw-r--r--demux/cue.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/demux/cue.c b/demux/cue.c
index 69f30f4871..9dbde71062 100644
--- a/demux/cue.c
+++ b/demux/cue.c
@@ -70,7 +70,7 @@ static enum cue_command read_cmd(struct bstr *data, struct bstr *out_params)
return CUE_EMPTY;
for (int n = 0; cue_command_strings[n].command != -1; n++) {
struct bstr name = bstr0(cue_command_strings[n].text);
- if (bstr_startswith(line, name)) {
+ if (bstr_case_startswith(line, name)) {
struct bstr rest = bstr_cut(line, name.len);
if (rest.len && !strchr(WHITESPACE, rest.start[0]))
continue;