convert to uid_t/gid_t

This commit is contained in:
0xEAB 2022-05-15 02:39:52 +02:00
parent f8099360fb
commit 767519c4de
1 changed files with 2 additions and 2 deletions

4
cgi.d
View File

@ -3510,11 +3510,11 @@ struct RequestServer {
foundHost = false;
}
if(foundUid) {
privilegesDropToUid = to!int(arg);
privilegesDropToUid = to!uid_t(arg);
foundUid = false;
}
if(foundGid) {
privilegesDropToGid = to!int(arg);
privilegesDropToGid = to!gid_t(arg);
foundGid = false;
}
if(arg == "--listening-host" || arg == "-h" || arg == "/listening-host")