]> git.ipfire.org Git - thirdparty/krb5.git/commitdiff
Fix Leash AddDisplayItem() declaration 725/head
authorGreg Hudson <ghudson@mit.edu>
Wed, 7 Feb 2018 15:45:31 +0000 (10:45 -0500)
committerGreg Hudson <ghudson@mit.edu>
Wed, 7 Feb 2018 15:45:31 +0000 (10:45 -0500)
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.

ticket: 8640
tags: pullup
target_version: 1.16-next

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);