diff options
author | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-06-13 16:52:21 +0200 |
---|---|---|
committer | Ondrej Zajicek (work) <santiago@crfreenet.org> | 2017-12-07 13:49:27 +0100 |
commit | d3fa9e84e98d7b8c726f5e35d6a359971eb98f94 (patch) | |
tree | 686c3291ab9833972c06834f63e742272e904c0e /nest | |
parent | 212eda07c4e481e3341ede37b0877fa22bc042a4 (diff) |
Timers: Show sub-second times in some protocol outputs
Diffstat (limited to 'nest')
-rw-r--r-- | nest/proto.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/proto.c b/nest/proto.c index 3043b648..8d5edda3 100644 --- a/nest/proto.c +++ b/nest/proto.c @@ -1136,7 +1136,7 @@ graceful_restart_show_status(void) cli_msg(-24, "Graceful restart recovery in progress"); cli_msg(-24, " Waiting for %d channels to recover", graceful_restart_locks); - cli_msg(-24, " Wait timer is %d/%d", tm_remains(gr_wait_timer), config->gr_wait); + cli_msg(-24, " Wait timer is %t/%u", tm2_remains(gr_wait_timer), config->gr_wait); } /** |