]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix Leash AddDisplayItem() declaration
authorGreg Hudson <ghudson@mit.edu>
Wed, 7 Feb 2018 15:45:31 +0000 (10:45 -0500)
committerGreg Hudson <ghudson@mit.edu>
Tue, 1 May 2018 20:03:17 +0000 (16:03 -0400)
Commit a9cbbf0899f270fbb14f63ffbed1b6d542333641 changed three
parameters in AddDisplayItem() from long to time_t, but did not change
the corresponding declaration in LeashView.h.  Fix that now.

(cherry picked from commit b1367abb2e2ff14446371155cb7e23a29b76aa87)

ticket: 8640
version_fixed: 1.16.1

src/windows/leash/LeashView.h

index 190c93be136eee009b4658a529b290623819141e..b6d288691ace5f6c7a9d9b0c542ab9f6e9f3bdb7 100644 (file)
@@ -218,9 +218,9 @@ private:
                                CCacheDisplayData *elem,
                                int iItem,
                                char *principal,
-                               long issued,
-                               long valid_until,
-                               long renew_until,
+                               time_t issued,
+                               time_t valid_until,
+                               time_t renew_until,
                                char *encTypes,
                                unsigned long flags,
                                char *cache_name);