Changed vfc_typenum back to vfc_index. The old vfsconf struct is now

visible again, and the new vfsconf struct didn't match reality.
This commit is contained in:
Bruce Evans 1997-03-03 05:53:54 +00:00
parent 6f6cd52d6a
commit 0df382bd0f

View file

@ -115,7 +115,7 @@ getvfsbytype(int type)
}
for(i = 0; i < _vfslistlen; i++) {
if(_vfslist[i].vfc_typenum == type)
if(_vfslist[i].vfc_index == type)
break;
}