| 329 | } |
| 330 | |
| 331 | BOOLEAN |
| 332 | isPatchNameMatch (CHAR8 *BundleIdentifier, CHAR8 *Name) |
| 333 | { |
| 334 | BOOLEAN isBundle = (AsciiStrStr(Name, ".") != NULL); |
| 335 | return |
| 336 | isBundle |
| 337 | ? (AsciiStrCmp(BundleIdentifier, Name) == 0) |
| 338 | : (AsciiStrStr(BundleIdentifier, Name) != NULL); |
| 339 | } |
| 340 | |
| 341 | |
| 342 |
nothing calls this directly
no test coverage detected