X-Git-Url: https://git.llucax.com/z.facultad/75.06/emufs.git/blobdiff_plain/49d62bfd045b8ff29cec163f8b41962887ac08c0..f41ad014e7d68321ff67258b99817651ecdab0bb:/tipo3/emufs.c diff --git a/tipo3/emufs.c b/tipo3/emufs.c index 35563fa..53ba505 100644 --- a/tipo3/emufs.c +++ b/tipo3/emufs.c @@ -36,7 +36,7 @@ EMUFS *emufs_crear(const char *filename, char tipo, unsigned int tam_bloque, uns tmp->leer_bloque = leer_bloque; tmp->leer_registro = leer_registro; tmp->grabar_registro = grabar_registro; - tmp->borrar_registro = NULL; + tmp->borrar_registro = borrar_registro; tmp->nombre = str_dup(filename); strcpy(name, filename); @@ -114,7 +114,7 @@ EMUFS *emufs_abrir(const char *filename) tmp->leer_bloque = leer_bloque; tmp->leer_registro = leer_registro; tmp->grabar_registro = grabar_registro; - tmp->borrar_registro = NULL; + tmp->borrar_registro = borrar_registro; tmp->nombre = str_dup(filename); }