Clarify comment on where to find process start-time on Linux
authorDavid Zeuthen <davidz@redhat.com>
Mon, 14 Sep 2009 16:06:37 +0000 (12:06 -0400)
committerDavid Zeuthen <davidz@redhat.com>
Mon, 14 Sep 2009 16:06:37 +0000 (12:06 -0400)
Also handle 64-bit jiffies (rather than 63-bit) for maximum
correctness.

src/polkit/polkitunixprocess.c

index f8e6fd9..c690077 100644 (file)
@@ -495,7 +495,7 @@ get_start_time_for_pid (pid_t    pid,
   if (!g_file_get_contents (filename, &contents, &length, error))
     goto out;
 
-  /* start time is the 19th token after the '(process name)' entry - since only this
+  /* start time is the token at index 19 after the '(process name)' entry - since only this
    * field can contain the ')' character, search backwards for this to avoid malicious
    * processes trying to fool us
    */
@@ -534,7 +534,7 @@ get_start_time_for_pid (pid_t    pid,
       goto out;
     }
 
-  start_time = strtoll (tokens[19], &endp, 10);
+  start_time = strtoull (tokens[19], &endp, 10);
   if (endp == tokens[19])
     {
       g_set_error (error,