diff options
author | Ryan Mitchell <rtmitchell@google.com> | 2020-10-14 14:19:51 -0700 |
---|---|---|
committer | Ryan Mitchell <rtmitchell@google.com> | 2020-10-14 14:53:01 -0700 |
commit | 70e02d428565b1cb9882ad2aa04ba7636fa3f099 (patch) | |
tree | ac67d0d2b599737c316ec9849a8a748c1bf482b4 /cmds | |
parent | 7d0ccc133bd0a691f0f1f1e56be533f57ee19e95 (diff) |
Fix <overlay-config-signature> comments
Fix comments that refer to <overlay-config-signature> as
<config-signature>.
Bug: none
Test: build
Change-Id: I1d3e5e66ec3da993082f3441997b0d243d61520b
Diffstat (limited to 'cmds')
-rw-r--r-- | cmds/idmap2/libidmap2/ResourceMapping.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/cmds/idmap2/libidmap2/ResourceMapping.cpp b/cmds/idmap2/libidmap2/ResourceMapping.cpp index 122f0682aec6..31f1c16ba5a6 100644 --- a/cmds/idmap2/libidmap2/ResourceMapping.cpp +++ b/cmds/idmap2/libidmap2/ResourceMapping.cpp @@ -71,9 +71,9 @@ Result<Unit> CheckOverlayable(const LoadedPackage& target_package, if (!target_package.DefinesOverlayable()) { return (sDefaultPolicies & fulfilled_policies) != 0 ? Result<Unit>({}) - : Error( - "overlay must be preinstalled or signed with the same signature as the " - "target"); + : Error("overlay must be preinstalled, signed with the same signature as the target," + " or signed with the same signature as the package referenced through" + " <overlay-config-signature>."); } const OverlayableInfo* overlayable_info = target_package.GetOverlayableInfo(target_resource); |