mirror of
https://github.com/vincentmli/bpfire.git
synced 2026-04-15 05:22:59 +02:00
proxy.cgi: The group name cannot be in quotes
Squid interprets the quotes as part of the group name, too Signed-off-by: Michael Tremer <michael.tremer@ipfire.org>
This commit is contained in:
@@ -3428,7 +3428,7 @@ END
|
||||
my $ntlm_auth_group = $proxysettings{'NTLM_AUTH_GROUP'};
|
||||
$ntlm_auth_group =~ s/\\/\+/;
|
||||
|
||||
print FILE " --require-membership-of=\"$ntlm_auth_group\"";
|
||||
print FILE " --require-membership-of=$ntlm_auth_group";
|
||||
}
|
||||
print FILE "\n";
|
||||
|
||||
@@ -3441,7 +3441,7 @@ END
|
||||
my $ntlm_auth_group = $proxysettings{'NTLM_AUTH_GROUP'};
|
||||
$ntlm_auth_group =~ s/\\/\+/;
|
||||
|
||||
print FILE " --require-membership-of=\"$ntlm_auth_group\"";
|
||||
print FILE " --require-membership-of=$ntlm_auth_group";
|
||||
}
|
||||
print FILE "\n";
|
||||
print FILE "auth_param basic children 10\n";
|
||||
|
||||
Reference in New Issue
Block a user