1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-23 17:34:34 +03:00

r25493: Fix typo in Jeremy's thread-safe winbind patch:

lock->unlock (would have tried to lock a mutex
at the end of a function).  Cut-n-paste error.
This commit is contained in:
Jim McDonough 2007-10-03 20:56:29 +00:00 committed by Gerald (Jerry) Carter
parent 18c6a2211d
commit 281c619154

View File

@ -1347,7 +1347,7 @@ _nss_winbind_sidtogid(const char *sid, gid_t *gid, int *errnop)
failed:
#if HAVE_PTHREAD
pthread_mutex_lock(&winbind_nss_mutex);
pthread_mutex_unlock(&winbind_nss_mutex);
#endif
return ret;