From 8176d4c9fe67701c7f2a71d6911961e16d843e1a Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20M=C3=BCller?= Date: Tue, 21 Feb 2006 17:35:52 +0000 Subject: [PATCH] r13598: Defining KRB5KRB_ERR_RESPONSE_TOO_BIG if not defined which is the case for older krb5 implementations. MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Patch slightly modified from the version provided by Björn Jacke at the samba-technical list after discussion on the list and by IRC. Thanks Björn! (This used to be commit 49e6431c06c70088907c31e2da1ec83a09377015) --- source3/include/includes.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/source3/include/includes.h b/source3/include/includes.h index 0dbcb69286b..210c0040b5b 100644 --- a/source3/include/includes.h +++ b/source3/include/includes.h @@ -1453,6 +1453,10 @@ time_t timegm(struct tm *tm); #if defined(HAVE_KRB5) +#ifndef KRB5KRB_ERR_RESPONSE_TOO_BIG +#define KRB5KRB_ERR_RESPONSE_TOO_BIG (-1765328332L) +#endif + #ifndef HAVE_KRB5_SET_REAL_TIME krb5_error_code krb5_set_real_time(krb5_context context, int32_t seconds, int32_t microseconds); #endif -- 2.11.4.GIT