Displaying 3 results from an estimated 3 matches for "0698b4f".
Did you mean:
069841
2016 Sep 15
0
[PATCH v5 1/6] filesystem_walk: fixed root inode listing
...+ STREQ(fsfile->name->name, ".")) /* Avoid '..' 'bin/..' 'etc/..' */
+ return 0;
+ else
+ return 1;
+ }
+
+ return 0;
+}
+
int
optgroup_libtsk_available (void)
{
diff --git a/generator/actions.ml b/generator/actions.ml
index eccef00..0698b4f 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -3566,9 +3566,8 @@ and directories stored within.
It is not necessary to mount the disk partition to run this command.
-All entries in the filesystem are returned, excluding C<.> and
-C<..>. This function can list dele...
2016 Sep 15
0
[PATCH v5 4/6] New API: internal_find_inode
...n TSK_WALK_CONT;
+
+ ret = send_dirent_info (fsfile, path);
+
+ return (ret == 0) ? TSK_WALK_CONT : TSK_WALK_ERROR;
+}
+
/* Extract the information from the entry, serialize and send it out.
* Return 0 on success, -1 on error.
*/
diff --git a/generator/actions.ml b/generator/actions.ml
index 0698b4f..55f4664 100644
--- a/generator/actions.ml
+++ b/generator/actions.ml
@@ -13204,6 +13204,15 @@ only the unallocated blocks will be extracted.
This is useful to detect hidden data or to retrieve deleted files
which data units have not been overwritten yet." };
+ { defaults with
+ name =...
2016 Sep 15
9
[PATCH v5 0/6] New API - find_inode
v5:
- small doc fix: filesystem_walk claimed '.' and '..' entries were
not reported but Root is now reported as '.'
- bump to 1.35.6
Matteo Cafasso (6):
filesystem_walk: fixed root inode listing
daemon: refactor tsk code
lib: rename tsk internal function
New API: internal_find_inode
New API: find_inode
find_inode: added API tests
daemon/tsk.c