File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
volatility3/framework/plugins/linux Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -78,8 +78,8 @@ def to_user(
7878 cached_pages = int (self .inode .i_mapping .nrpages )
7979 file_mode = self .inode .get_file_mode ()
8080 access_time_dt = self .inode .get_access_time ()
81- modification_time_str = self .inode .get_modification_time ()
82- change_time_str = self .inode .get_change_time ()
81+ modification_time_dt = self .inode .get_modification_time ()
82+ change_time_dt = self .inode .get_change_time ()
8383
8484 inode_user = InodeUser (
8585 superblock_addr = superblock_addr ,
@@ -92,8 +92,8 @@ def to_user(
9292 cached_pages = cached_pages ,
9393 file_mode = file_mode ,
9494 access_time = access_time_dt ,
95- modification_time = modification_time_str ,
96- change_time = change_time_str ,
95+ modification_time = modification_time_dt ,
96+ change_time = change_time_dt ,
9797 path = self .path ,
9898 )
9999 return inode_user
You can’t perform that action at this time.
0 commit comments