Ok, include also the two tests which actually does effect the claims

of the last commit message.

Sponsored by:	DARPA & NAI Labs.
This commit is contained in:
Poul-Henning Kamp 2002-09-27 20:30:27 +00:00
parent ed0ff8e52d
commit e615b0fd93
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=104055

View file

@ -155,6 +155,8 @@ g_do_event(struct g_event *ep)
mp2 = ep->class;
if (mp2->taste == NULL)
break;
if (g_shutdown)
break;
LIST_FOREACH(mp, &g_classes, class) {
if (mp2 == mp)
continue;
@ -167,6 +169,8 @@ g_do_event(struct g_event *ep)
}
break;
case EV_NEW_PROVIDER:
if (g_shutdown)
break;
g_trace(G_T_TOPOLOGY, "EV_NEW_PROVIDER(%s)",
ep->provider->name);
LIST_FOREACH(mp, &g_classes, class) {