projects
/
l2tpns.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
multicast disaster mitigation
[l2tpns.git]
/
cli.c
diff --git
a/cli.c
b/cli.c
index
dbb0ca2
..
9f50323
100644
(file)
--- a/
cli.c
+++ b/
cli.c
@@
-2,7
+2,7
@@
// vim: sw=8 ts=8
char const *cvs_name = "$Name: $";
// vim: sw=8 ts=8
char const *cvs_name = "$Name: $";
-char const *cvs_id_cli = "$Id: cli.c,v 1.43.2.
3 2005/01/13 07:58:53
bodea Exp $";
+char const *cvs_id_cli = "$Id: cli.c,v 1.43.2.
5 2005/01/13 08:26:51
bodea Exp $";
#include <stdio.h>
#include <stdarg.h>
#include <stdio.h>
#include <stdarg.h>
@@
-725,8
+725,15
@@
static int cmd_show_counters(struct cli_def *cli, char *command, char **argv, in
cli_print(cli, "%-30s%u", "call_radiusretry", GET_STAT(call_radiusretry));
#endif
cli_print(cli, "%-30s%u", "call_radiusretry", GET_STAT(call_radiusretry));
#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;
}
return CLI_OK;
}