diff options
author | Rambaldi <gentoo@xs4me.net> | 2012-07-07 13:36:06 +0200 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-07-09 08:41:19 -0400 |
commit | 5dc9860a9f0aa626687281eed62c8af1986c2b99 (patch) | |
tree | 0455b47e5775bbc998dcd6b26adf633409e966f6 | |
parent | aa2c6f469414668e56aa03d5ba5cecde64bc713e (diff) | |
download | sssd-5dc9860a9f0aa626687281eed62c8af1986c2b99.tar.gz sssd-5dc9860a9f0aa626687281eed62c8af1986c2b99.tar.bz2 sssd-5dc9860a9f0aa626687281eed62c8af1986c2b99.zip |
heimdal: fix compile error in krb5-child-test
-rw-r--r-- | src/external/krb5.m4 | 1 | ||||
-rw-r--r-- | src/tests/krb5_child-test.c | 4 |
2 files changed, 5 insertions, 0 deletions
diff --git a/src/external/krb5.m4 b/src/external/krb5.m4 index b87ec5c8..474cb37c 100644 --- a/src/external/krb5.m4 +++ b/src/external/krb5.m4 @@ -58,6 +58,7 @@ AC_CHECK_FUNCS([krb5_get_init_creds_opt_alloc krb5_get_error_message \ krb5_get_time_offsets \ krb5_principal_get_realm \ krb5_cc_cache_match \ + krb5_timestamp_to_sfstring \ krb5_cc_get_full_name]) CFLAGS=$SAVE_CFLAGS LIBS=$SAVE_LIBS diff --git a/src/tests/krb5_child-test.c b/src/tests/krb5_child-test.c index 636f7336..760b9586 100644 --- a/src/tests/krb5_child-test.c +++ b/src/tests/krb5_child-test.c @@ -315,11 +315,15 @@ printtime(krb5_timestamp ts) char timestring[BUFSIZ]; char fill = '\0'; +#ifdef HAVE_KRB5_TIMESTAMP_TO_SFSTRING kret = krb5_timestamp_to_sfstring(ts, timestring, BUFSIZ, &fill); if (kret) { KRB5_CHILD_TEST_DEBUG(SSSDBG_OP_FAILURE, kret); } printf("%s", timestring); +#else + printf("%s", ctime(&ts)); +#endif /* HAVE_KRB5_TIMESTAMP_TO_SFSTRING */ } static void |