Skip to content

Commit

Permalink
update ioc_start.py - typo sysctl
Browse files Browse the repository at this point in the history
  • Loading branch information
Defenso-QTH committed Oct 3, 2024
1 parent a5fdf63 commit 3e72a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion iocage_lib/ioc_start.py
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ def is_jailed(self):
result = libc.sysctlbyname(b'security.jail.jailed', byref(_mem), byref(_sz), None, c_size_t(0))
if result != 0:
raise Exception('sysctl returned with error %s' % result)
print('sysctl:' _mem.value)
print('sysctl:', _mem.value)
return _mem.value

def __start_jail__(self):
Expand Down

0 comments on commit 3e72a3b

Please sign in to comment.