From b1367abb2e2ff14446371155cb7e23a29b76aa87 Mon Sep 17 00:00:00 2001 From: Greg Hudson Date: Wed, 7 Feb 2018 10:45:31 -0500 Subject: [PATCH] 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 --- src/windows/leash/LeashView.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/windows/leash/LeashView.h b/src/windows/leash/LeashView.h index 190c93be13..b6d288691a 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); -- 2.47.2