Skip to content

Commit 0a8f2cd

Browse files
committed
files_only default arg & minor version bump
1 parent 23e4d35 commit 0a8f2cd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

volatility3/framework/symbols/linux/__init__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@ def __init__(self, *args, **kwargs) -> None:
9999
class LinuxUtilities(interfaces.configuration.VersionableInterface):
100100
"""Class with multiple useful linux functions."""
101101

102-
_version = (2, 3, 1)
102+
_version = (2, 4, 0)
103103
_required_framework_version = (2, 0, 0)
104104
deleted = "<deleted>"
105105

@@ -307,7 +307,7 @@ def _get_new_sock_pipe_path(cls, context, task, filp) -> str:
307307
return f"{pre_name}:[{inode.i_ino:d}]"
308308

309309
@classmethod
310-
def path_for_file(cls, context, task, filp, files_only) -> str:
310+
def path_for_file(cls, context, task, filp, files_only=False) -> str:
311311
"""Returns a file (or sock pipe) pathname relative to the task's root directory.
312312
313313
A 'file' structure doesn't have enough information to properly restore its

0 commit comments

Comments
 (0)