Roman Rakus 5afcbd
--- authd-1.4.3/authd.c.jiffies64	2007-03-27 16:45:50.000000000 -0400
Roman Rakus 5afcbd
+++ authd-1.4.3/authd.c	2007-03-27 17:47:33.000000000 -0400
Roman Rakus 5afcbd
@@ -347,6 +347,21 @@ static void create_opt(int argc, char *a
Roman Rakus 5afcbd
 
Roman Rakus 5afcbd
 static const char *const DELIM = ",: \t\r\n\v\f";
Roman Rakus 5afcbd
 
Roman Rakus 5afcbd
+static unsigned long long get_tok_ullong(char *s, unsigned base) {
Roman Rakus 5afcbd
+    unsigned long ull = ULLONG_MAX;
Roman Rakus 5afcbd
+
Roman Rakus 5afcbd
+    assert(base <= 36);
Roman Rakus 5afcbd
+    if ((s = strtok(s, DELIM)) != NULL) {
Roman Rakus 5afcbd
+        char *endptr;
Roman Rakus 5afcbd
+
Roman Rakus 5afcbd
+        ull = strtoull(s, &endptr, (int) base);
Roman Rakus 5afcbd
+        if (is_bad_strto(s, endptr))
Roman Rakus 5afcbd
+            errno = EINVAL;
Roman Rakus 5afcbd
+    }
Roman Rakus 5afcbd
+    else errno = EINVAL;
Roman Rakus 5afcbd
+    return ull;
Roman Rakus 5afcbd
+}
Roman Rakus 5afcbd
+
Roman Rakus 5afcbd
 static unsigned long get_tok_uint(char *s, unsigned base) {
Roman Rakus 5afcbd
     unsigned long ul = ULONG_MAX;
Roman Rakus 5afcbd
 
Roman Rakus 5afcbd
@@ -654,7 +669,7 @@ static bool get_info(reply_t *out, reque
Roman Rakus 5afcbd
         (void) get_tok_uint(NULL, 16);            // tx_queue
Roman Rakus 5afcbd
         (void) get_tok_uint(NULL, 16);            // rx_queue
Roman Rakus 5afcbd
         (void) get_tok_uint(NULL, 16);            // tr (boolean)
Roman Rakus 5afcbd
-        (void) get_tok_uint(NULL, 16);            // tm->when (unit: jiffies)
Roman Rakus 5afcbd
+        (void) get_tok_ullong(NULL, 16);            // tm->when (unit: jiffies)
Roman Rakus 5afcbd
         strtok(NULL, DELIM);                      // retrnsmt
Roman Rakus 5afcbd
         uid = get_tok_uint(NULL, 10);             // uid (base 10 uint)
Roman Rakus 5afcbd
         strtok(NULL, DELIM);                      // timeout