Remove debugging variable from r143761.

This commit is contained in:
Gleb Smirnoff 2015-10-06 09:43:49 +00:00
parent c1d0909a53
commit 640082d498
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=288916

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);
}