From: Greg Hudson Date: Wed, 7 Feb 2018 15:45:31 +0000 (-0500) Subject: Fix Leash AddDisplayItem() declaration X-Git-Tag: krb5-1.17-beta1~188 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=b1367abb2e2ff14446371155cb7e23a29b76aa87;p=thirdparty%2Fkrb5.git 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 --- 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);