Skip to content
Snippets Groups Projects
Commit 66060311 authored by Amit Dror's avatar Amit Dror Committed by Chromium LUCI CQ
Browse files

Add missing quotes in code requirement string

The is required for team IDs that start with a number.

Bug: None
Change-Id: Iacde90e36cdb59ada8194bb28c9b6d4f129d343d
Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/5993493


Reviewed-by: default avatarMark Rowe <markrowe@chromium.org>
Commit-Queue: Mark Mentovai <mark@chromium.org>
Reviewed-by: default avatarMark Mentovai <mark@chromium.org>
Cr-Commit-Position: refs/heads/main@{#1378980}
parent 847bdcf6
No related branches found
No related tags found
No related merge requests found
......@@ -485,7 +485,7 @@ ScopedCFTypeRef<SecRequirementRef> ProcessRequirement::AsSecRequirement()
if (team_identifier_.size()) {
clauses.push_back(
StrCat({"certificate leaf[subject.OU] = ", team_identifier_}));
StrCat({"certificate leaf[subject.OU] = \"", team_identifier_, "\""}));
}
clauses.push_back(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment