mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 12:23:32 +01:00
Update the uptime string to include an hours indicator
Before, it wasn't really obvious if one meant hours:minutes or minutes:seconds etc.
This commit is contained in:
parent
d696bd1bfc
commit
da3256b5ae
@ -39,13 +39,15 @@ secs_to_uptime(long secs)
|
||||
|
||||
switch (days) {
|
||||
case 0:
|
||||
tor_asprintf(&uptime_string, "%d:%02d", hours, minutes);
|
||||
tor_asprintf(&uptime_string, "%d:%02d hours", hours, minutes);
|
||||
break;
|
||||
case 1:
|
||||
tor_asprintf(&uptime_string, "%ld day %d:%02d", days, hours, minutes);
|
||||
tor_asprintf(&uptime_string, "%ld day %d:%02d hours",
|
||||
days, hours, minutes);
|
||||
break;
|
||||
default:
|
||||
tor_asprintf(&uptime_string, "%ld days %d:%02d", days, hours, minutes);
|
||||
tor_asprintf(&uptime_string, "%ld days %d:%02d hours",
|
||||
days, hours, minutes);
|
||||
break;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user