From 532ad63744cd9c5e657599be0b16652bcc15fe5c Mon Sep 17 00:00:00 2001 From: Patrick McDermott Date: Tue, 18 Apr 2023 19:49:57 -0400 Subject: ustar: Shorten macro name --- (limited to 'src') diff --git a/src/ustar.c b/src/ustar.c index 2a386f0..9d95052 100644 --- a/src/ustar.c +++ b/src/ustar.c @@ -254,7 +254,7 @@ opkg_opk_ustar_seek(struct opkg_opk_ustar *ustar, struct opkg_opk_ustar_seek_name *names) { static struct _opkg_opk_ustar_header header; - static char name[OPKG_OPK_USTAR_NAME_MAX_LEN]; + static char name[OPKG_OPK_USTAR_NAME_SIZE]; int found; int found_all; struct opkg_opk_ustar_seek_name *seek_name; diff --git a/src/ustar.h b/src/ustar.h index d2317b6..a5bb461 100644 --- a/src/ustar.h +++ b/src/ustar.h @@ -23,14 +23,14 @@ #include #include "gzip.h" -#define OPKG_OPK_USTAR_RECORD_SIZE 512 -#define OPKG_OPK_USTAR_NAME_MAX_LEN 257 /* prefix[155] + '/' + name[100] + '\0' - */ +#define OPKG_OPK_USTAR_RECORD_SIZE 512 +#define OPKG_OPK_USTAR_NAME_SIZE 257 /* prefix[155] + '/' + name[100] + '\0' + */ struct opkg_opk_ustar; struct opkg_opk_ustar_member { - char name[OPKG_OPK_USTAR_NAME_MAX_LEN]; + char name[OPKG_OPK_USTAR_NAME_SIZE]; uint16_t mode; uint64_t size; int64_t mtime; -- cgit v0.9.1