From da3256b5aefb4cad706d9f239c9743ca396564c4 Mon Sep 17 00:00:00 2001
From: Sebastian Hahn <sebastian@torproject.org>
Date: Mon, 16 May 2011 21:58:01 +0200
Subject: Update the uptime string to include an hours indicator

Before, it wasn't really obvious if one meant hours:minutes or
minutes:seconds etc.
---
 src/or/status.c | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

(limited to 'src/or')

diff --git a/src/or/status.c b/src/or/status.c
index 34a27b2ed..c8bc0705d 100644
--- a/src/or/status.c
+++ b/src/or/status.c
@@ -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;
   }
 
-- 
cgit v1.2.3