Fixed compilation of debug log code (that is currently commented out)

This commit is contained in:
goldsimon 2010-04-02 16:17:51 +00:00
parent cc3e01a9f5
commit a96fa7d221

View File

@ -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 */