X-Git-Url: https://git.distorted.org.uk/u/mdw/catacomb/blobdiff_plain/9eef0c14b1b57daf12c8724df26f665087c1b01a..df8e52c798e925d8d6fc1ec0d43996bebf1092ef:/keyutil.c diff --git a/keyutil.c b/keyutil.c index 79cf2c2..cca075f 100644 --- a/keyutil.c +++ b/keyutil.c @@ -29,6 +29,8 @@ /*----- Header files ------------------------------------------------------*/ +#define _FILE_OFFSET_BITS 64 + #include "config.h" #include @@ -1442,10 +1444,10 @@ static void showkey(key *k, listopts *o) if (!o->v) { if (!(o->f & f_newline)) { - printf("%8s %-20s %-20s %-10s %-10s\n", + printf("%8s %-20s %-20s %-10s %s\n", "Id", "Tag", "Type", "Expire", "Delete"); } - printf("%08lx %-20s %-20s %-10s %-10s\n", + printf("%08lx %-20s %-20s %-10s %s\n", (unsigned long)k->id, k->tag ? k->tag : "", k->type, ebuf, dbuf); o->f |= f_newline;