From: Amos Jeffries Date: Mon, 13 Apr 2015 14:11:16 +0000 (-0700) Subject: Fix typo in rev.14015 X-Git-Tag: merge-candidate-3-v1~178 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=0485c6e1f06a3089bc50bcfb119710d6ab3c6cbb;p=thirdparty%2Fsquid.git Fix typo in rev.14015 --- diff --git a/src/ssl/certificate_db.cc b/src/ssl/certificate_db.cc index 75e9e127ca..175243ce56 100644 --- a/src/ssl/certificate_db.cc +++ b/src/ssl/certificate_db.cc @@ -78,7 +78,7 @@ void Ssl::Lock::unlock() #if _SQUID_SOLARIS_ lockf(fd, F_ULOCK, 0); #else - flock(fd, ULOCK_UN); + flock(fd, LOCK_UN); #endif close(fd); fd = -1;