From: Eric Biggers Date: Tue, 13 May 2014 05:44:46 +0000 (-0500) Subject: Replace WIM_GID_LEN => WIM_GUID_LEN X-Git-Tag: v1.7.0~196 X-Git-Url: https://wimlib.net/git/?p=wimlib;a=commitdiff_plain;h=2d14d2982e057b2d99128c20c9768985bdfcd0a0 Replace WIM_GID_LEN => WIM_GUID_LEN --- diff --git a/include/wimlib/header.h b/include/wimlib/header.h index 2bbb8388..62d916f0 100644 --- a/include/wimlib/header.h +++ b/include/wimlib/header.h @@ -6,7 +6,7 @@ #include "wimlib/endianness.h" /* Length of "Globally Unique ID" field in WIM header. */ -#define WIM_GID_LEN 16 +#define WIM_GUID_LEN 16 /* Length of the WIM header on disk. wimlib currently requires that the header * be exactly this size. */ @@ -73,7 +73,7 @@ struct wim_header_disk { /* +0x18: Globally unique identifier for the WIM file. Basically a * bunch of random bytes. */ - u8 guid[WIM_GID_LEN]; + u8 guid[WIM_GUID_LEN]; /* +0x28: Number of this WIM part in the split WIM file, indexed from 1, * or 1 if the WIM is not split. */ @@ -123,7 +123,7 @@ struct wim_header { u32 wim_version; u32 flags; u32 chunk_size; - u8 guid[WIM_GID_LEN]; + u8 guid[WIM_GUID_LEN]; u16 part_number; u16 total_parts; u32 image_count; diff --git a/include/wimlib/wimboot.h b/include/wimlib/wimboot.h index fd178c61..afb6e65e 100644 --- a/include/wimlib/wimboot.h +++ b/include/wimlib/wimboot.h @@ -9,7 +9,7 @@ struct wim_lookup_table_entry; extern int wimboot_alloc_data_source_id(const wchar_t *wim_path, - const u8 guid[WIM_GID_LEN], int image, + const u8 guid[WIM_GUID_LEN], int image, const wchar_t *target, u64 *data_source_id_ret, bool *wof_running_ret); diff --git a/src/extract.c b/src/extract.c index a4029ec2..422cd9cc 100644 --- a/src/extract.c +++ b/src/extract.c @@ -1471,7 +1471,7 @@ extract_streams_from_pipe(struct apply_ctx *ctx) pwm_flags = PWM_ALLOW_WIM_HDR; if ((ctx->extract_flags & WIMLIB_EXTRACT_FLAG_RESUME)) pwm_flags |= PWM_SILENT_EOF; - memcpy(ctx->progress.extract.guid, ctx->wim->hdr.guid, WIM_GID_LEN); + memcpy(ctx->progress.extract.guid, ctx->wim->hdr.guid, WIM_GUID_LEN); ctx->progress.extract.part_number = ctx->wim->hdr.part_number; ctx->progress.extract.total_parts = ctx->wim->hdr.total_parts; if (ctx->progress_func) @@ -1561,12 +1561,12 @@ extract_streams_from_pipe(struct apply_ctx *ctx) if (part_number != ctx->progress.extract.part_number || total_parts != ctx->progress.extract.total_parts || memcmp(pwm_hdr.guid, ctx->progress.extract.guid, - WIM_GID_LEN)) + WIM_GUID_LEN)) { ctx->progress.extract.part_number = part_number; ctx->progress.extract.total_parts = total_parts; memcpy(ctx->progress.extract.guid, - pwm_hdr.guid, WIM_GID_LEN); + pwm_hdr.guid, WIM_GUID_LEN); if (ctx->progress_func) { ctx->progress_func( WIMLIB_PROGRESS_MSG_EXTRACT_SPWM_PART_BEGIN, diff --git a/src/header.c b/src/header.c index c720a5f2..30b2b132 100644 --- a/src/header.c +++ b/src/header.c @@ -124,7 +124,7 @@ read_wim_header(WIMStruct *wim, struct wim_header *hdr) hdr->flags = le32_to_cpu(disk_hdr.wim_flags); hdr->chunk_size = le32_to_cpu(disk_hdr.chunk_size); - memcpy(hdr->guid, disk_hdr.guid, WIM_GID_LEN); + memcpy(hdr->guid, disk_hdr.guid, WIM_GUID_LEN); hdr->part_number = le16_to_cpu(disk_hdr.part_number); hdr->total_parts = le16_to_cpu(disk_hdr.total_parts); @@ -181,7 +181,7 @@ write_wim_header_at_offset(const struct wim_header *hdr, struct filedes *out_fd, disk_hdr.chunk_size = cpu_to_le32(hdr->chunk_size); else disk_hdr.chunk_size = 0; - memcpy(disk_hdr.guid, hdr->guid, WIM_GID_LEN); + memcpy(disk_hdr.guid, hdr->guid, WIM_GUID_LEN); disk_hdr.part_number = cpu_to_le16(hdr->part_number); disk_hdr.total_parts = cpu_to_le16(hdr->total_parts); @@ -312,7 +312,7 @@ wimlib_print_header(const WIMStruct *wim) tprintf(T("Chunk Size = %u\n"), hdr->chunk_size); tfputs (T("GUID = "), stdout); - print_byte_field(hdr->guid, WIM_GID_LEN, stdout); + print_byte_field(hdr->guid, WIM_GUID_LEN, stdout); tputchar(T('\n')); tprintf(T("Part Number = %hu\n"), hdr->part_number); tprintf(T("Total Parts = %hu\n"), hdr->total_parts); diff --git a/src/join.c b/src/join.c index 8a0abe5d..f61eaaf5 100644 --- a/src/join.c +++ b/src/join.c @@ -112,7 +112,7 @@ verify_swm_set(WIMStruct *wim, WIMStruct **additional_swms, "chunk size"); return WIMLIB_ERR_SPLIT_INVALID; } - if (memcmp(guid, swm->hdr.guid, WIM_GID_LEN) != 0) { + if (memcmp(guid, swm->hdr.guid, WIM_GUID_LEN) != 0) { ERROR("The split WIMs do not all have the same " "GUID"); return WIMLIB_ERR_SPLIT_INVALID; diff --git a/src/lookup_table.c b/src/lookup_table.c index 41642526..3c7d887f 100644 --- a/src/lookup_table.c +++ b/src/lookup_table.c @@ -429,7 +429,7 @@ cmp_streams_by_sequential_order(const void *p1, const void *p2) /* Different (possibly split) WIMs? */ if (wim1 != wim2) { - v = memcmp(wim1->hdr.guid, wim2->hdr.guid, WIM_GID_LEN); + v = memcmp(wim1->hdr.guid, wim2->hdr.guid, WIM_GUID_LEN); if (v) return v; } diff --git a/src/wim.c b/src/wim.c index ce55444b..624a5e2a 100644 --- a/src/wim.c +++ b/src/wim.c @@ -410,7 +410,7 @@ wimlib_set_wim_info(WIMStruct *wim, const struct wimlib_wim_info *info, int whic return ret; if (which & WIMLIB_CHANGE_GUID) { - memcpy(wim->hdr.guid, info->guid, WIM_GID_LEN); + memcpy(wim->hdr.guid, info->guid, WIM_GUID_LEN); wim->guid_set_explicitly = 1; } diff --git a/src/wimboot.c b/src/wimboot.c index 7ee67f96..3dd6da1e 100644 --- a/src/wimboot.c +++ b/src/wimboot.c @@ -312,7 +312,7 @@ static u8 * fill_in_wimoverlay_dat(u8 *buf, const struct WimOverlay_dat_header *old_hdr, const wchar_t *wim_path, - const u8 wim_guid[WIM_GID_LEN], + const u8 wim_guid[WIM_GUID_LEN], int image, u64 new_data_source_id, const PARTITION_INFORMATION_EX *part_info, @@ -360,8 +360,8 @@ fill_in_wimoverlay_dat(u8 *buf, new_entry_1->entry_2_length = new_entry_2_size; new_entry_1->wim_type = WIM_BOOT_NOT_OS_WIM; new_entry_1->wim_index = image; - BUILD_BUG_ON(sizeof(new_entry_1->guid) != WIM_GID_LEN); - memcpy(new_entry_1->guid, wim_guid, WIM_GID_LEN); + BUILD_BUG_ON(sizeof(new_entry_1->guid) != WIM_GUID_LEN); + memcpy(new_entry_1->guid, wim_guid, WIM_GUID_LEN); p += sizeof(struct WimOverlay_dat_entry_1); @@ -457,7 +457,7 @@ fill_in_wimoverlay_dat(u8 *buf, static int prepare_wimoverlay_dat(const struct WimOverlay_dat_header *old_hdr, const wchar_t *wim_path, - const u8 wim_guid[WIM_GID_LEN], + const u8 wim_guid[WIM_GUID_LEN], int image, void **new_contents_ret, u32 *new_contents_size_ret, @@ -757,7 +757,7 @@ out_free_contents: */ static int update_wimoverlay_manually(const wchar_t *drive, const wchar_t *wim_path, - const u8 wim_guid[WIM_GID_LEN], + const u8 wim_guid[WIM_GUID_LEN], int image, u64 *data_source_id_ret) { wchar_t path_main[] = L"A:\\System Volume Information\\WimOverlay.dat"; @@ -911,7 +911,7 @@ try_to_attach_wof(const wchar_t *drive) */ int wimboot_alloc_data_source_id(const wchar_t *wim_path, - const u8 wim_guid[WIM_GID_LEN], + const u8 wim_guid[WIM_GUID_LEN], int image, const wchar_t *target, u64 *data_source_id_ret, bool *wof_running_ret) {