diff options
| author | Peter Jones <pjones@redhat.com> | 2021-01-29 18:45:00 -0500 |
|---|---|---|
| committer | Peter Jones <pjones@redhat.com> | 2021-01-29 18:45:00 -0500 |
| commit | 1fa0b8d50a7f93b266728f297fee8c43becec203 (patch) | |
| tree | a90bb4796a86157632a35e1ad01b82d7d14368a7 | |
| parent | 0172d43507f0d0af4b8940131770196b5a186aba (diff) | |
| download | efi-boot-shim-1fa0b8d50a7f93b266728f297fee8c43becec203.tar.gz efi-boot-shim-1fa0b8d50a7f93b266728f297fee8c43becec203.zip | |
Renaming PeImage.h to pe.h wasn't actually a good idea.
I renamed PeImage.h to pe.h when I de-capitalized them, but this turns
out to be a bad idea because we already have a pe.h on the SBAT branch.
Woops.
This moves it to peimage.h
Signed-off-by: Peter Jones <pjones@redhat.com>
| -rw-r--r-- | include/peimage.h (renamed from include/pe.h) | 0 | ||||
| -rw-r--r-- | include/variables.h | 2 |
2 files changed, 1 insertions, 1 deletions
diff --git a/include/pe.h b/include/peimage.h index 49b89ae0..49b89ae0 100644 --- a/include/pe.h +++ b/include/peimage.h diff --git a/include/variables.h b/include/variables.h index ee746ff6..2a957036 100644 --- a/include/variables.h +++ b/include/variables.h @@ -2,7 +2,7 @@ #define SHIM_VARIABLES_H #include "efiauthenticated.h" -#include "pe.h" /* for SHA256_DIGEST_SIZE */ +#include "peimage.h" /* for SHA256_DIGEST_SIZE */ #define certlist_for_each_certentry(cl, cl_init, s, s_init) \ for (cl = (EFI_SIGNATURE_LIST *)(cl_init), s = (s_init); \ |
