Home | Info | Community | Development | myReactOS | Contact Us
Definition at line 183 of file file.c.
Referenced by add_file().
{ FDSC **this,*next; if (!(this = file_find(curr,(char *)fixed))) die("Internal error: file_find failed"); switch ((*this)->type) { case fdt_drop: VfatPrint("Dropping %s\n",file_name(fixed)); *fixed = DELETED_FLAG; break; case fdt_undelete: *fixed = *(*this)->name; VfatPrint("Undeleting %s\n",file_name(fixed)); break; default: die("Internal error: file_modify"); } next = (*this)->next; vffree(*this); *this = next; }