mirror of
https://github.com/RfidResearchGroup/proxmark3.git
synced 2025-08-21 05:43:48 -07:00
Merge branch 'master' into fix_spiffs_tree_linkname
Signed-off-by: Iceman <iceman@iuse.se>
This commit is contained in:
commit
f66d5970be
2 changed files with 4 additions and 3 deletions
|
@ -3,7 +3,8 @@ All notable changes to this project will be documented in this file.
|
|||
This project uses the changelog in accordance with [keepchangelog](http://keepachangelog.com/). Please use this to write notable changes, which is not the same as git commit log...
|
||||
|
||||
## [unreleased][unreleased]
|
||||
- fixed symlink name in `mem spiffs tree` (@ANTodorov)
|
||||
- Fixed symlink name in `mem spiffs tree` (@ANTodorov)
|
||||
- Fixed reported file/link names when `mem spiffs wipe` (ANTodorov)
|
||||
- Updated atrs list (@iceman1001)
|
||||
- Added support for a new KDF (@iceman1001)
|
||||
- Added Inner range aid and mad entries (@iceman1001)
|
||||
|
|
|
@ -686,10 +686,10 @@ void rdv40_spiffs_safe_wipe(void) {
|
|||
read_from_spiffs((char *)pe->name, (uint8_t *)linkdest, SPIFFS_OBJ_NAME_LEN);
|
||||
|
||||
remove_from_spiffs(linkdest);
|
||||
Dbprintf(".lnk removed %s", pe->name);
|
||||
Dbprintf("removed %s", linkdest);
|
||||
|
||||
remove_from_spiffs((char *)pe->name);
|
||||
Dbprintf("removed %s", linkdest);
|
||||
Dbprintf(".lnk removed %s", pe->name);
|
||||
|
||||
} else {
|
||||
remove_from_spiffs((char *)pe->name);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue