s/M_TRYWAIT/M_WAIT/

This commit is contained in:
Ruslan Ermilov 2008-03-25 15:44:49 +00:00
parent 5a9926445a
commit eb085c43f0
2 changed files with 2 additions and 2 deletions

View File

@ -247,7 +247,7 @@ with the
flags
.Dv M_DONTWAIT
and
.Dv M_TRYWAIT .
.Dv M_WAIT .
.Sh CONTEXT
.Fn malloc ,
.Fn realloc

View File

@ -210,7 +210,7 @@ struct mbuf *m;
mb_init(mbp);
mb_put_uint8(mbp, 33);
mb_put_uint16le(mbp, length);
m = m_copym(mbp->mb_top, 0, M_COPYALL, M_TRYWAIT);
m = m_copym(mbp->mb_top, 0, M_COPYALL, M_WAIT);
send(m);
mb_done(mbp);
.Ed