diff options
-rw-r--r-- | expac.c | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -453,6 +453,9 @@ static void print_pkg(alpm_pkg_t *pkg, const char *format) case 'n': /* package name */ out += printf(fmt, alpm_pkg_get_name(pkg)); break; + case 'e': /* package base */ + out += printf(fmt, alpm_pkg_get_base(pkg)); + break; case 'v': /* version */ out += printf(fmt, alpm_pkg_get_version(pkg)); break; |