C#: Fix rebase error merge (validation on encryption kind was un-intentionally deleted).

This commit is contained in:
Michael Nebel
2022-08-12 08:30:43 +02:00
parent 160ae934af
commit 592b60d6ab

View File

@@ -359,6 +359,7 @@ module CsvValidation {
exists(string row, string kind | sinkModel(row) |
kind = row.splitAt(";", 7) and
not kind = ["code", "sql", "xss", "remote", "html"] and
not kind.matches("encryption-%") and
result = "Invalid kind \"" + kind + "\" in sink model."
)
or