summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStef Walter <stef@memberwebs.com>2008-04-22 15:14:00 +0000
committerStef Walter <stef@memberwebs.com>2008-04-22 15:14:00 +0000
commit77455d883bc6cc3f6d0f7054f0b509c9447c64e9 (patch)
tree5ffd4306b91fe0aff31e42878ad6780cb56b2570
parent6956eed305b72d81c0a0805953f667f2012162ea (diff)
Fix some spurious warnings.
-rw-r--r--ChangeLog3
-rw-r--r--daemon/misc.c4
2 files changed, 4 insertions, 3 deletions
diff --git a/ChangeLog b/ChangeLog
index e7a3d85..e5733e4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,7 +1,8 @@
0.9 ???
- Allow 128 character long NTLM domains.
- Parse passwords from LDAP more circumspectly.
- - Bump max connection limit to 1024
+ - Bump max connection limit to 1024.
+ - Fix some spurious warnings
0.8 [06-07-2007]
- Support ignoring of HTTP method in digest. Useful for pass-through
diff --git a/daemon/misc.c b/daemon/misc.c
index e55aa47..ca14ee3 100644
--- a/daemon/misc.c
+++ b/daemon/misc.c
@@ -223,13 +223,13 @@ void ha_lock(pthread_mutex_t* mtx)
if(r != 0)
{
errno = r;
- ha_message(NULL, LOG_CRIT, "threading problem. couldn't lock mutex");
+ ha_messagex(NULL, LOG_CRIT, "threading problem. couldn't lock mutex");
}
#ifdef _DEBUG
else if(wait)
{
- ha_message(NULL, LOG_DEBUG, "thread unblocked: %d", pthread_self());
+ ha_messagex(NULL, LOG_DEBUG, "thread unblocked: %d", pthread_self());
}
#endif
}