From 4c81cad550184e7ccf3b175fe0b0bb6b6c2eb44c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Love=20H=C3=B6rnquist=20=C3=85strand?= Date: Fri, 19 Dec 2003 01:21:04 +0000 Subject: [PATCH] (krb5_context_data): add mutex for error_string git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@13235 ec53bebd-3082-4978-b11e-865c3cabbd6b --- lib/krb5/krb5.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/krb5/krb5.h b/lib/krb5/krb5.h index fb0136ac2..9f131c353 100644 --- a/lib/krb5/krb5.h +++ b/lib/krb5/krb5.h @@ -417,10 +417,11 @@ typedef struct krb5_context_data { krb5_addresses *ignore_addresses; char *default_cc_name; int pkinit_flags; + void *mutex; /* protects error_string/error_buf */ } krb5_context_data; enum { - KRB5_PKINIT_WIN2K = 1, /* wire compatible with Windows 2000 */ + KRB5_PKINIT_WIN2K = 1, /* wire compatible with Windows 2k */ KRB5_PKINIT_PACKET_CABLE = 2 /* use packet cable standard */ };