bre: Don't loop if we try to access an invalid plex type. This is

typically the case when the expurgated version of Vinum tries to
     access a RAID-5 plex.
This commit is contained in:
Greg Lehey 1999-06-22 05:40:51 +00:00
parent c9b0944731
commit b53adf6b1c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=48093

View File

@ -592,6 +592,7 @@ bre(struct request *rq,
default:
log(LOG_ERR, "vinum: invalid plex type %d in bre\n", plex->organization);
status = REQUEST_DOWN; /* can't access it */
}
return status;