Fix Windows build of mcache.c

Commit c04aa9e082 specified the
mutex type, pthread_mutex_t, directly instead of using the
abstraction, HEIMDAL_MUTEX.

Change-Id: Iedfc46163140cf23014d357cc8ccc9f0e6224327
This commit is contained in:
Jeffrey Altman
2012-04-10 15:41:23 -04:00
parent c04aa9e082
commit 8e2762f907

View File

@@ -47,7 +47,7 @@ typedef struct krb5_mcache {
struct krb5_mcache *next;
time_t mtime;
krb5_deltat kdc_offset;
pthread_mutex_t mutex;
HEIMDAL_MUTEX mutex;
} krb5_mcache;
static HEIMDAL_MUTEX mcc_mutex = HEIMDAL_MUTEX_INITIALIZER;