Remove debugging variable from r143761.

This commit is contained in:
glebius 2015-10-06 09:43:49 +00:00
parent a9bfaebd85
commit 94c16d891e

View File

@ -1034,8 +1034,6 @@ m_pullup(struct mbuf *n, int len)
* the amount of empty space before the data in the new mbuf to be specified
* (in the event that the caller expects to prepend later).
*/
int MSFail;
struct mbuf *
m_copyup(struct mbuf *n, int len, int dstoff)
{
@ -1072,7 +1070,6 @@ m_copyup(struct mbuf *n, int len, int dstoff)
return (m);
bad:
m_freem(n);
MSFail++;
return (NULL);
}