diff options
-rw-r--r-- | CHANGES | 1 | ||||
-rwxr-xr-x | miniircd | 3 |
2 files changed, 4 insertions, 0 deletions
@@ -13,6 +13,7 @@ Unreleased * --password-file: file from which to read connection password * --pid-file: file to write PID to * Split name listing message into multiple 353 messages when needed. + * Made miniircd start correctly on Windows. 1.1 (2015-05-22) @@ -966,6 +966,9 @@ def main(argv): metavar="U[:G]", help="change process user (and optionally group) after startup" " (requires root)") + else: + op.chroot = False + op.setuid = False (options, args) = op.parse_args(argv[1:]) if options.debug: |