gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[GNUnet-SVN] r37783 - gnunet/src/util


From: gnunet
Subject: [GNUnet-SVN] r37783 - gnunet/src/util
Date: Thu, 25 Aug 2016 11:59:27 +0200

Author: grothoff
Date: 2016-08-25 11:59:27 +0200 (Thu, 25 Aug 2016)
New Revision: 37783

Modified:
   gnunet/src/util/strings.c
Log:
-support hours/hour/minute as relative time units

Modified: gnunet/src/util/strings.c
===================================================================
--- gnunet/src/util/strings.c   2016-08-25 09:38:23 UTC (rev 37782)
+++ gnunet/src/util/strings.c   2016-08-25 09:59:27 UTC (rev 37783)
@@ -306,9 +306,12 @@
     { "\"", 1000  * 1000LL },
     { "m", 60 * 1000  * 1000LL},
     { "min", 60 * 1000  * 1000LL},
+    { "minute", 60 * 1000  * 1000LL},
     { "minutes", 60 * 1000  * 1000LL},
     { "'", 60 * 1000  * 1000LL},
     { "h", 60 * 60 * 1000  * 1000LL},
+    { "hour", 60 * 60 * 1000  * 1000LL},
+    { "hours", 60 * 60 * 1000  * 1000LL},
     { "d", 24 * 60 * 60 * 1000LL * 1000LL},
     { "day", 24 * 60 * 60 * 1000LL * 1000LL},
     { "days", 24 * 60 * 60 * 1000LL * 1000LL},




reply via email to

[Prev in Thread] Current Thread [Next in Thread]