X-Git-Url: https://wimlib.net/git/?p=wimlib;a=blobdiff_plain;f=src%2Fwim.c;h=68e54bb85f6ad827eb6849590bb0b43dfa0b7573;hp=5d5c8fefb3a0dcfa6c0261216b02a0a95ed19f3b;hb=cbaca94ca219aae5ae32a1f083659e1fa421f676;hpb=35dd893208119869db6a90b1d1663f9aea88a3f7 diff --git a/src/wim.c b/src/wim.c index 5d5c8fef..68e54bb8 100644 --- a/src/wim.c +++ b/src/wim.c @@ -259,7 +259,8 @@ WIMLIBAPI int wimlib_resolve_image(WIMStruct *w, const char *image_name_or_num) if (!image_name_or_num) return WIM_NO_IMAGE; - if (strcmp(image_name_or_num, "all") == 0) + if (strcmp(image_name_or_num, "all") == 0 + || strcmp(image_name_or_num, "*") == 0) return WIM_ALL_IMAGES; image = strtol(image_name_or_num, &p, 10); if (p != image_name_or_num && *p == '\0') { @@ -331,7 +332,7 @@ WIMLIBAPI int wimlib_print_metadata(WIMStruct *w, int image) if (!w) return WIMLIB_ERR_INVALID_PARAM; if (w->hdr.part_number != 1) { - ERROR("We cannot show the metadata from part %hu of a %hu-part split WIM", + ERROR("We cannot show the metadata from part %hu of a %hu-part split WIM.", w->hdr.part_number, w->hdr.total_parts); ERROR("Select the first part of the split WIM to see the metadata."); return WIMLIB_ERR_SPLIT_UNSUPPORTED;