log rather than assert

This commit is contained in:
Eric House 2013-01-26 21:16:48 -08:00
parent 06bc80fcc9
commit a9b459ea2e

View file

@ -1092,7 +1092,10 @@ handleProxyMsgs( int sock, const AddrInfo* addr, const unsigned char* bufp,
} }
} }
} }
assert( bufp == end ); // don't ship with this!!! if ( bufp != end ) {
logf( XW_LOGERROR, "%s: buf != end: %p vs %p", __func__, bufp, end );
}
// assert( bufp == end ); // don't ship with this!!!
} }
} // handleProxyMsgs } // handleProxyMsgs