stream: don't exit on first iteration if there is no match

Fixes: f921b64ed7
This commit is contained in:
Kacper Michajłow 2024-06-15 20:01:39 +02:00
parent 3b3604e162
commit df6b16c0ca
1 changed files with 2 additions and 1 deletions

View File

@ -916,6 +916,7 @@ bool stream_has_proto(const char *proto)
}
talloc_free(get_protocols);
if (match)
return match;
}