Panic fix
This commit is contained in:
parent
85209d2e29
commit
2b23d38c5b
1 changed files with 1 additions and 3 deletions
|
@ -287,8 +287,6 @@ int main(int argc, char *argv[])
|
||||||
r = findproc("inet", &tasknr);
|
r = findproc("inet", &tasknr);
|
||||||
if (r == OK)
|
if (r == OK)
|
||||||
notify(tasknr);
|
notify(tasknr);
|
||||||
else
|
|
||||||
printf("fxp: cannot find proc number for inet: %d\n", r);
|
|
||||||
|
|
||||||
while (TRUE)
|
while (TRUE)
|
||||||
{
|
{
|
||||||
|
@ -1600,7 +1598,7 @@ message *mp;
|
||||||
mp->m_type= DL_NAME_REPLY;
|
mp->m_type= DL_NAME_REPLY;
|
||||||
r= send(mp->m_source, mp);
|
r= send(mp->m_source, mp);
|
||||||
if (r != OK)
|
if (r != OK)
|
||||||
panic("FXP", "fxp_getname: send failed: %d\n", r);
|
panic("FXP", "fxp_getname: send failed", r);
|
||||||
}
|
}
|
||||||
|
|
||||||
/*===========================================================================*
|
/*===========================================================================*
|
||||||
|
|
Loading…
Reference in a new issue