Andrew Geissler | 87f5cff | 2022-09-30 13:13:31 -0500 | [diff] [blame] | 1 | From f28b8ec20c3485068f1617ff93b497bafe5264e1 Mon Sep 17 00:00:00 2001 |
| 2 | From: Khem Raj <raj.khem@gmail.com> |
| 3 | Date: Sat, 3 Sep 2022 00:50:17 -0700 |
| 4 | Subject: [PATCH] genisoimage: Add checksum.h and md5.h for function prototypes |
| 5 | |
| 6 | Needed for parse_checksum_algo and calculate_md5sum |
| 7 | |
| 8 | Upstream-Status: Pending |
| 9 | |
| 10 | Signed-off-by: Khem Raj <raj.khem@gmail.com> |
| 11 | --- |
| 12 | genisoimage/genisoimage.c | 2 ++ |
| 13 | genisoimage/jte.c | 2 ++ |
| 14 | 2 files changed, 4 insertions(+) |
| 15 | |
| 16 | diff --git a/genisoimage/genisoimage.c b/genisoimage/genisoimage.c |
| 17 | index 84ac3c2..5c9f7f3 100644 |
| 18 | --- a/genisoimage/genisoimage.c |
| 19 | +++ b/genisoimage/genisoimage.c |
| 20 | @@ -59,6 +59,8 @@ |
| 21 | #include "udf.h" |
| 22 | #endif |
| 23 | |
| 24 | +#include "checksum.h" |
| 25 | + |
| 26 | #ifdef NEED_O_BINARY |
| 27 | #include <io.h> /* for setmode() prototype */ |
| 28 | #endif |
| 29 | diff --git a/genisoimage/jte.c b/genisoimage/jte.c |
| 30 | index 0dff289..1f03ad3 100644 |
| 31 | --- a/genisoimage/jte.c |
| 32 | +++ b/genisoimage/jte.c |
| 33 | @@ -36,6 +36,8 @@ |
| 34 | #include "vms.h" |
| 35 | #endif |
| 36 | |
| 37 | +#include "md5.h" |
| 38 | + |
| 39 | /* Different types used in building our state list below */ |
| 40 | #define JTET_FILE_MATCH 1 |
| 41 | #define JTET_NOMATCH 2 |
| 42 | -- |
| 43 | 2.37.3 |
| 44 | |