Display output in seconds, which is what we get as input. Signed-off-by: Pablo Neira Ayuso <pablo@xxxxxxxxxxxxx> --- src/datatype.c | 31 +------------------------------ 1 file changed, 1 insertion(+), 30 deletions(-) diff --git a/src/datatype.c b/src/datatype.c index 4594490..b8f6ca9 100644 --- a/src/datatype.c +++ b/src/datatype.c @@ -669,36 +669,7 @@ const struct datatype mark_type = { static void time_type_print(const struct expr *expr) { - uint64_t days, hours, minutes, seconds; - const char *delim = ""; - - seconds = mpz_get_uint64(expr->value); - - days = seconds / 86400; - seconds %= 86400; - - hours = seconds / 3600; - seconds %= 3600; - - minutes = seconds / 60; - seconds %= 60; - - if (days > 0) { - printf("%s%" PRIu64 " d", delim, days); - delim = " "; - } - if (hours > 0) { - printf("%s%" PRIu64 " h", delim, hours); - delim = " "; - } - if (minutes > 0) { - printf("%s%" PRIu64 " min", delim, minutes); - delim = " "; - } - if (seconds > 0) { - printf("%s%" PRIu64 " s", delim, seconds); - delim = " "; - } + printf("%"PRIu64"", mpz_get_uint64(expr->value)); } const struct datatype time_type = { -- 1.7.10.4 -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html