Skip to content

Commit

Permalink
No longer have to check for setuid helper
Browse files Browse the repository at this point in the history
  • Loading branch information
surenm committed Dec 1, 2011
1 parent 79ad563 commit d7f435f
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/checker/cc_backend/Config.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,7 @@ def __init__(self, configFilePath):
self.outputLimit = int(self.config.get("BackendMain","OutputFileSizeLimit"))
self.heapsize = self.config.get("RuntimeLimits", "HeapSize")
self.reference_outputs_path = self.config.get("BackendMain", "ReferencesPath")

# Check if setuid_helper exists.
self.shPath = "/usr/local/bin/checker/setuid_helper"
assert os.path.isfile(self.shPath) and os.access(self.shPath, os.X_OK)



if __name__ == "__main__":

Expand Down

0 comments on commit d7f435f

Please sign in to comment.