time: Show the time with two digits..
diff --git a/src/qxdm-log.c b/src/qxdm-log.c
index 71d046d..054407e 100644
--- a/src/qxdm-log.c
+++ b/src/qxdm-log.c
@@ -134,7 +134,7 @@
 		return -2;
 	}
 
-	printf("%d:%d:%d %-20s: ",
+	printf("%.2d:%.2d:%.2d %-20s: ",
 		tm->tm_hour, tm->tm_min, tm->tm_sec,
 		file);
 	printf(log, msg->params[0], msg->params[1], msg->params[2]);