diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-07 08:51:02 +0200 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-07 08:51:02 +0200 |
commit | 9154b8b5e44859ce0a1fd0ba292b26bf8dc8d046 (patch) | |
tree | 3b56caf8d0b3e50d4b72f057c5ab02d61d2357c6 | |
parent | c9a43a14697fa955f31e495a8b03a523975ad285 (diff) | |
download | apk-tools-9154b8b5e44859ce0a1fd0ba292b26bf8dc8d046.tar.gz apk-tools-9154b8b5e44859ce0a1fd0ba292b26bf8dc8d046.tar.bz2 apk-tools-9154b8b5e44859ce0a1fd0ba292b26bf8dc8d046.tar.xz apk-tools-9154b8b5e44859ce0a1fd0ba292b26bf8dc8d046.zip |
ver: print '?' when package is not available in any repo
This makes it possible to differ between downgradable packages (-l '<')
and unavailable in repos (-l '?').
-rw-r--r-- | src/apk_version.h | 1 | ||||
-rw-r--r-- | src/ver.c | 3 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/apk_version.h b/src/apk_version.h index dcbf20f..4275343 100644 --- a/src/apk_version.h +++ b/src/apk_version.h @@ -14,6 +14,7 @@ #include "apk_blob.h" +#define APK_VERSION_UNKNOWN 0 #define APK_VERSION_EQUAL 1 #define APK_VERSION_LESS 2 #define APK_VERSION_GREATER 4 @@ -125,7 +125,8 @@ static void ver_print_package_status(struct ver_ctx *ictx, struct apk_database * break; } } - r = apk_version_compare_blob(*pkg->version, *latest); + r = latest->len ? apk_version_compare_blob(*pkg->version, *latest) + : APK_VERSION_UNKNOWN; opstr = apk_version_op_string(r); if ((ictx->limchars != NULL) && (strchr(ictx->limchars, *opstr) == NULL)) return; |