flame: fixing umask to 0o000 to reflect permissions to 0777

This commit is contained in:
Jakub Jezek 2022-04-07 14:52:13 +02:00
parent 614c49b57f
commit ce4aa40f21
No known key found for this signature in database
GPG key ID: D8548FBF690B100A

View file

@ -462,7 +462,7 @@ class WireTapCom(object):
def _subprocess_preexec_fn():
os.setpgrp()
os.umask(0o022)
os.umask(0o000)
if __name__ == "__main__":