krb5 commit: Fix Leash AddDisplayItem() declaration
Greg Hudson <[email protected]>
| Newsgroups | gmane.comp.encryption.kerberos.cvs |
|---|---|
| Message-ID | <[email protected]> |
https://github.com/krb5/krb5/commit/b1367abb2e2ff14446371155cb7e23a29b76aa87 commit b1367abb2e2ff14446371155cb7e23a29b76aa87 Author: Greg Hudson <[email protected]> Date: Wed Feb 7 10:45:31 2018 -0500 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 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);