Sophie

Sophie

distrib > Mandriva > current > i586 > media > contrib-release-src > by-pkgid > 77615297b80a869988b51c3dca828459 > files > 9

heimdal-1.3.2-3mdv2010.1.src.rpm

diff -p -up heimdal-1.3.1/cf/check-compile-et.m4.com_right_r heimdal-1.3.1/cf/check-compile-et.m4
--- heimdal-1.3.1/cf/check-compile-et.m4.com_right_r	2009-11-21 16:41:51.000000000 +0100
+++ heimdal-1.3.1/cf/check-compile-et.m4	2010-02-14 22:33:42.000000000 +0100
@@ -67,7 +67,6 @@ elif test "${krb_cv_compile_et}" = "yes"
     const char *p;
     p = error_message(0);
     initialize_error_table_r(0,0,0,0);
-    com_right_r(0, 0, 0, 0);
   ]])],[krb_cv_com_err="yes"],[krb_cv_com_err="no"; CPPFLAGS="${save_CPPFLAGS}"])
   AC_MSG_RESULT(${krb_cv_com_err})
   LIBS="${krb_cv_save_LIBS}"
diff -p -up heimdal-1.3.1/lib/krb5/error_string.c.com_right_r heimdal-1.3.1/lib/krb5/error_string.c
--- heimdal-1.3.1/lib/krb5/error_string.c.com_right_r	2009-11-21 16:41:51.000000000 +0100
+++ heimdal-1.3.1/lib/krb5/error_string.c	2010-02-14 22:37:57.000000000 +0100
@@ -217,30 +217,17 @@ krb5_have_error_string(krb5_context cont
 const char * KRB5_LIB_FUNCTION
 krb5_get_error_message(krb5_context context, krb5_error_code code)
 {
+    const char *cstr;
     char *str;
 
-    HEIMDAL_MUTEX_lock(context->mutex);
-    if (context->error_string &&
-	(code == context->error_code || context->error_code == 0))
-    {
-	str = strdup(context->error_string);
-	if (str) {
-	    HEIMDAL_MUTEX_unlock(context->mutex);
-	    return str;
-	}
-    }
-    HEIMDAL_MUTEX_unlock(context->mutex);
-
-    if (code == 0)
-	return strdup("Success");
-    {
-	const char *msg;
-	char buf[128];
-	msg = com_right_r(context->et_list, code, buf, sizeof(buf));
-	if (msg)
-	    return strdup(msg);
-    }
-
+    str = krb5_get_error_string(context);
+    if (str)
+      return str;
+
+    cstr = krb5_get_err_text(context, code);
+    if (cstr)
+      return strdup(cstr);
+    
     if (asprintf(&str, "<unknown error: %d>", (int)code) == -1)
 	return NULL;