We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e3092c0 commit 8314be8Copy full SHA for 8314be8
plugins/utmpx.py
@@ -165,11 +165,11 @@ def Plugin_Start(mac_info):
165
utmpx_artifacts = []
166
utmpx_path = '/private/var/run/utmpx'
167
168
- if ProcessUtmpx(mac_info, utmpx_artifacts, utmpx_path):
169
- if len(utmpx_artifacts) > 0:
170
- PrintAll(utmpx_artifacts, mac_info.output_params, '')
171
- else:
172
- log.info('No utmpx artifacts were found!')
+ ProcessUtmpx(mac_info, utmpx_artifacts, utmpx_path)
+ if len(utmpx_artifacts) > 0:
+ PrintAll(utmpx_artifacts, mac_info.output_params, '')
+ else:
+ log.info('No utmpx artifacts were found!')
173
174
def Plugin_Start_Standalone(input_files_list, output_params):
175
'''Main entry point function when used on single artifacts (mac_apt_singleplugin), not on a full disk image'''
0 commit comments