diff options
| author | 2024-12-17 11:15:33 -0800 | |
|---|---|---|
| committer | 2024-12-17 11:15:33 -0800 | |
| commit | 61d5f00bffcb2e8c069f0bb8b5eae93dd6d0a4b5 (patch) | |
| tree | 8a1b0ebdcfd8d2a6eee24725817f59e48d4170d0 | |
| parent | 7d03f38260d5cfd5935bcd13e19a0c1919111c41 (diff) | |
Correct partition name
Test: m
Bug: 373685244
Ignore-AOSP-First: CPing
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:3fdf2553a65530bb33a815a73bad5ad7cab463c3)
Merged-In: Ie073f7b33843f838a6c66d53b4feb37e213706f4
Change-Id: Ie073f7b33843f838a6c66d53b4feb37e213706f4
| -rw-r--r-- | tools/aconfig/aconfig/src/commands.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/aconfig/aconfig/src/commands.rs b/tools/aconfig/aconfig/src/commands.rs index 4c06462cb3..547076fb66 100644 --- a/tools/aconfig/aconfig/src/commands.rs +++ b/tools/aconfig/aconfig/src/commands.rs @@ -439,7 +439,7 @@ where // Exclude system/vendor/product flags that are RO+disabled. let should_filter_container = pf.container == Some("vendor".to_string()) || pf.container == Some("system".to_string()) - || pf.container == Some("vendor".to_string()); + || pf.container == Some("product".to_string()); if !(should_filter_container && pf.state == Some(ProtoFlagState::DISABLED.into()) && pf.permission == Some(ProtoFlagPermission::READ_ONLY.into())) |