Possible fix for the allow-root problem.

This commit is contained in:
Jeremy Fincher 2004-08-27 02:58:04 +00:00
parent 00409b53da
commit e97c610e77
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ if __name__ == '__main__':
(options, args) = parser.parse_args()
if os.name == 'posix':
if os.getuid() == 0 or os.geteuid() == 0 and not options.allowRoot:
if (os.getuid() == 0 or os.geteuid() == 0) and not options.allowRoot:
sys.stderr.write('Dude, don\'t even try to run this as root.\n')
sys.exit(-1)