Don't moan about unexpected config req's when in ST_STOPPING.

This commit is contained in:
Brian Somers 1997-11-11 23:23:11 +00:00
parent 12ef29a81a
commit a9c503af9d

View File

@ -17,7 +17,7 @@
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* $Id: fsm.c,v 1.19 1997/09/10 23:55:35 brian Exp $
* $Id: fsm.c,v 1.20 1997/10/26 01:02:37 brian Exp $
*
* TODO:
* o Refer loglevel for log output
@ -364,8 +364,8 @@ FsmRecvConfigReq(struct fsm * fp, struct fsmheader * lhp, struct mbuf * bp)
pfree(bp);
return;
case ST_CLOSING:
case ST_STOPPING:
LogPrintf(LogERROR, "Got ConfigReq while state = %d\n", fp->state);
case ST_STOPPING:
pfree(bp);
return;
}