summaryrefslogtreecommitdiff
path: root/src/windows/include/leashwin.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/windows/include/leashwin.h')
-rw-r--r--src/windows/include/leashwin.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/windows/include/leashwin.h b/src/windows/include/leashwin.h
index 9577365a7ea0..325dce2e96ec 100644
--- a/src/windows/include/leashwin.h
+++ b/src/windows/include/leashwin.h
@@ -111,9 +111,9 @@ struct TicketList {
TicketList *next;
char *service;
char *encTypes;
- krb5_timestamp issued;
- krb5_timestamp valid_until;
- krb5_timestamp renew_until;
+ time_t issued;
+ time_t valid_until;
+ time_t renew_until;
unsigned long flags;
};
@@ -124,9 +124,9 @@ struct TICKETINFO {
char *ccache_name;
TicketList *ticket_list;
int btickets; /* Do we have tickets? */
- long issued; /* The issue time */
- long valid_until; /* */
- long renew_until; /* The Renew time (k5 only) */
+ time_t issued; /* The issue time */
+ time_t valid_until; /* */
+ time_t renew_until; /* The Renew time (k5 only) */
unsigned long flags;
};