summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-xminiircd3
1 files changed, 2 insertions, 1 deletions
diff --git a/miniircd b/miniircd
index c47a275..d8d0017 100755
--- a/miniircd
+++ b/miniircd
@@ -883,7 +883,8 @@ def main(argv):
from grp import getgrnam
if os.getuid() != 0:
op.error("Must be root to use --setuid")
- match = re.findall(r"([a-z_][a-z0-9_-]*\$?)", options.setuid)
+ match = re.findall(r"([a-z_][a-z0-9_-]*\$?)", options.setuid,
+ flags=re.IGNORECASE)
if len(match) > 1:
options.setuid = (int(getpwnam(match[0]).pw_uid),
int(getgrnam(match[1]).gr_gid))