Fix backend_destroy to call bi_destroy instead of bi_close

This commit is contained in:
Kurt Zeilenga 1999-02-07 18:24:05 +00:00
parent 587535a310
commit 36a06168c5

View file

@ -228,8 +228,8 @@ int backend_destroy(void)
/* destroy each backend type */
for( i = 0; i < nBackendInfo; i++ ) {
if( backendInfo[i].bi_close ) {
backendInfo[i].bi_close(
if( backendInfo[i].bi_destroy ) {
backendInfo[i].bi_destroy(
&backendInfo[i] );
}
}