From 5bc28e0d7a004f4c03d886fc21c2af5bf0aa7205 Mon Sep 17 00:00:00 2001 From: pier11 Date: Fri, 12 Mar 2010 17:23:52 +0000 Subject: [PATCH] fix #2969327: brought Kerberos back to SIPE we lost Kerberos for *nix users in 1.9.0 bug #2969327 --- src/core/sip-sec.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/src/core/sip-sec.c b/src/core/sip-sec.c index cefde5db..da58637d 100644 --- a/src/core/sip-sec.c +++ b/src/core/sip-sec.c @@ -21,6 +21,10 @@ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + #include #include #include @@ -178,7 +182,10 @@ sip_sec_init_context(SipSecContext *context, domain, username, password); - if (!*context) return NULL; + if (!*context) { + purple_debug_info("sipe", "ERROR: sip_sec_init_context: failed sip_sec_create_context()\n"); + return NULL; + } ret = sip_sec_init_context_step(*context, target, -- 2.11.4.GIT