client: print intervals in seconds up to 1200 seconds
This covers random variations in the default maximum polling interval.
This commit is contained in:
parent
316d50d6f1
commit
ee396702f2
1 changed files with 1 additions and 1 deletions
2
client.c
2
client.c
|
@ -1540,7 +1540,7 @@ print_seconds(unsigned long s)
|
|||
|
||||
if (s == (uint32_t)-1) {
|
||||
printf(" -");
|
||||
} else if (s <= 1024) {
|
||||
} else if (s < 1200) {
|
||||
printf("%4ld", s);
|
||||
} else if (s < 36000) {
|
||||
printf("%3ldm", s / 60);
|
||||
|
|
Loading…
Reference in a new issue