X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/85944624925b27cb9076e6ba46fc50c3f6bdd2a5..7a88471c0a2fbba81489078fc4a13fcc715d0912:/emufs/emufs.c diff --git a/emufs/emufs.c b/emufs/emufs.c index d79f559..9f7917c 100644 --- a/emufs/emufs.c +++ b/emufs/emufs.c @@ -257,7 +257,7 @@ EMUFS *emufs_abrir(const char *filename) 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; }