Substitute a panic for a undefined function so LINT will compile.

This commit is contained in:
Poul-Henning Kamp 1998-04-04 18:07:01 +00:00
parent 71dab323ee
commit c90cdf29ba
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=35032

View file

@ -2398,7 +2398,11 @@ key_usrreq(so, req, m, nam, control)
keyso_cb.any_count--;
}
s = splnet();
#if 0
error = raw_usrreq(so, req, m, nam, control);
#else
panic("FIXME!");
#endif
if (!so) return error;
rp = sotorawcb(so);