diff options
author | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2023-04-17 10:34:58 (EDT) |
---|---|---|
committer | Patrick McDermott <patrick.mcdermott@libiquity.com> | 2023-04-17 10:34:58 (EDT) |
commit | 79d5944e7b163b824a33029001941f444e2efedb (patch) | |
tree | 16b832197cdd5e093857e2699d54acfff1874a88 | |
parent | 652b5a0bb66c90b8235cca1ef67e84a55a83d90a (diff) |
main: Fix control file name
-rw-r--r-- | src/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ _opkg_opk_main_read_control(struct opkg_opk_ustar *ustar) size_t size; int ret; - if (opkg_opk_ustar_seek(ustar, "control") != OPKG_OPK_OK) { + if (opkg_opk_ustar_seek(ustar, "./control") != OPKG_OPK_OK) { fputs("Error: Failed to find control file\n", stderr); return OPKG_OPK_ERROR; } |