aboutsummaryrefslogtreecommitdiff
path: root/src/windows
diff options
context:
space:
mode:
authorGreg Hudson <ghudson@mit.edu>2018-02-07 10:45:31 -0500
committerGreg Hudson <ghudson@mit.edu>2018-02-07 10:45:31 -0500
commitb1367abb2e2ff14446371155cb7e23a29b76aa87 (patch)
tree735d0840ae2602de1548d19131e951c8a18b0e27 /src/windows
parent364c608911af2f227695bb527d4e42f091ee8bd3 (diff)
downloadkrb5-b1367abb2e2ff14446371155cb7e23a29b76aa87.zip
krb5-b1367abb2e2ff14446371155cb7e23a29b76aa87.tar.gz
krb5-b1367abb2e2ff14446371155cb7e23a29b76aa87.tar.bz2
Fix Leash AddDisplayItem() declaration
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
Diffstat (limited to 'src/windows')
-rw-r--r--src/windows/leash/LeashView.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/windows/leash/LeashView.h b/src/windows/leash/LeashView.h
index 190c93b..b6d2886 100644
--- a/src/windows/leash/LeashView.h
+++ b/src/windows/leash/LeashView.h
@@ -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);