fread(&tipo, sizeof(EMUFS_Tipo), 1, fp);
/* Si no es un tipo conocido, sale. */
- if ((tipo != T1) && (tipo != T2) && (tipo != T3)) {
+ if ((tipo != T1) && (tipo != T2) && (tipo != T3) && (tipo != T4) && (tipo != T5)) {
fclose(fp);
return NULL;
}
cur = e->indices;
while (cur) {
del = cur;
- fprintf(stderr, "INDICE A ELIMINAR = %s\n", del->nombre);
cur = cur->sig;
emufs_indice_destruir(e, del);
}