diff options
author | Gerald Carter <jerry@samba.org> | 2004-05-25 18:12:55 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:56:17 -0500 |
commit | e80dad7561edbf65605e9c94ef8801e4416ba002 (patch) | |
tree | 8652ca015302e6a7c062cd3ea26c08f6bfccfc20 /source4/libcli/raw | |
parent | fcd718c7d8a6850ae8719f23ed044b06b57501cd (diff) | |
download | samba-e80dad7561edbf65605e9c94ef8801e4416ba002.tar.gz samba-e80dad7561edbf65605e9c94ef8801e4416ba002.tar.bz2 samba-e80dad7561edbf65605e9c94ef8801e4416ba002.zip |
r891: fix compile
(This used to be commit 8b6c048a02b4be0ba9c67ed82973041dccdd5c51)
Diffstat (limited to 'source4/libcli/raw')
-rw-r--r-- | source4/libcli/raw/clikrb5.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/libcli/raw/clikrb5.c b/source4/libcli/raw/clikrb5.c index 0d4fade295..1d9c02f7f4 100644 --- a/source4/libcli/raw/clikrb5.c +++ b/source4/libcli/raw/clikrb5.c @@ -37,10 +37,10 @@ /* * This function is not in the Heimdal mainline. */ - krb5_error_code krb5_set_real_time(krb5_context context, int32_t_t seconds, int32_t_t microseconds) + krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds) { krb5_error_code ret; - int32_t_t sec, usec; + int32_t sec, usec; ret = krb5_us_timeofday(context, &sec, &usec); if (ret) |