From a96fa7d2213d85c881ecb14bd51f69c79c52d08b Mon Sep 17 00:00:00 2001 From: goldsimon Date: Fri, 2 Apr 2010 16:17:51 +0000 Subject: [PATCH] Fixed compilation of debug log code (that is currently commented out) --- src/netif/ppp/md5.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/netif/ppp/md5.c b/src/netif/ppp/md5.c index 113370de..3cb69e2b 100644 --- a/src/netif/ppp/md5.c +++ b/src/netif/ppp/md5.c @@ -138,8 +138,8 @@ MD5Update(MD5_CTX *mdContext, unsigned char *inBuf, unsigned int inLen) unsigned int i, ii; #if 0 - PPPDEBUGLOG_INFO, ("MD5Update: %u:%.*H\n", inLen, MIN(inLen, 20) * 2, inBuf); - PPPDEBUGLOG_INFO, ("MD5Update: %u:%s\n", inLen, inBuf); + PPPDEBUG(LOG_INFO, ("MD5Update: %u:%.*H\n", inLen, LWIP_MIN(inLen, 20) * 2, inBuf)); + PPPDEBUG(LOG_INFO, ("MD5Update: %u:%s\n", inLen, inBuf)); #endif /* compute number of bytes mod 64 */