summaryrefslogtreecommitdiffstats
path: root/expac.c
diff options
context:
space:
mode:
Diffstat (limited to 'expac.c')
-rw-r--r--expac.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/expac.c b/expac.c
index 1297c49..9bf24f4 100644
--- a/expac.c
+++ b/expac.c
@@ -37,7 +37,7 @@
#define DEFAULT_DELIM "\n"
#define DEFAULT_LISTDELIM " "
#define DEFAULT_TIMEFMT "%c"
-#define FORMAT_TOKENS "BCDEGLNOPRSabdmnprsuvw%"
+#define FORMAT_TOKENS "BCDEGLNOPRSabdhmnprsuvw%"
#define FORMAT_TOKENS_LOCAL "ilFw"
#define FORMAT_TOKENS_SYNC "fgk"
#define ESCAPE_TOKENS "\"\\abefnrtv"
@@ -424,6 +424,9 @@ static int print_pkg(alpm_pkg_t *pkg, const char *format) {
case 'g': /* base64 gpg sig */
out += printf(fmt, alpm_pkg_get_base64_sig(pkg));
break;
+ case 'h': /* sha256sum */
+ out += printf(fmt, alpm_pkg_get_sha256sum(pkg));
+ break;
/* times */
case 'b': /* build date */