X-Git-Url: http://git.sameswireless.fr/l2tpns.git/blobdiff_plain/17714a3ca71d1565b30a4bdbfe26f88d23816dc8..1c209703a398a3d56d483d25b008f122b437ea65:/cli.c diff --git a/cli.c b/cli.c index 3134a22..c2e54be 100644 --- a/cli.c +++ b/cli.c @@ -2,7 +2,7 @@ // vim: sw=8 ts=8 char const *cvs_name = "$Name: $"; -char const *cvs_id_cli = "$Id: cli.c,v 1.49 2005-01-13 07:05:56 bodea Exp $"; +char const *cvs_id_cli = "$Id: cli.c,v 1.51 2005-01-13 08:26:25 bodea Exp $"; #include #include @@ -727,8 +727,15 @@ static int cmd_show_counters(struct cli_def *cli, char *command, char **argv, in cli_print(cli, "%-30s%u", "call_random_data", GET_STAT(call_random_data)); #endif - cli_print(cli, ""); - cli_print(cli, "Counters last reset %s ago", duration(time_now - GET_STAT(last_reset))); + { + time_t l = GET_STAT(last_reset); + char *t = ctime(&l); + char *p = strchr(t, '\n'); + if (p) *p = 0; + + cli_print(cli, ""); + cli_print(cli, "Last counter reset %s", t); + } return CLI_OK; }