Exo: update package2 constants

This commit is contained in:
Michael Scire
2019-01-31 01:39:53 -08:00
parent 506ac3f167
commit a71b2d9329
2 changed files with 5 additions and 3 deletions

View File

@@ -363,7 +363,7 @@ static bool validate_package2_metadata(package2_meta_t *metadata) {
/* Perform version checks. */
/* We will be compatible with all package2s released before current, but not newer ones. */
if (metadata->version_max >= PACKAGE2_MINVER_THEORETICAL && metadata->version_min < PACKAGE2_MAXVER_620_CURRENT) {
if (metadata->version_max >= PACKAGE2_MINVER_THEORETICAL && metadata->version_min < PACKAGE2_MAXVER_700_CURRENT) {
return true;
}