Skip to content

Commit

Permalink
bugfix: fixed typo in dhcpd.conf statement
Browse files Browse the repository at this point in the history
  • Loading branch information
chilek committed Aug 9, 2022
1 parent 1403880 commit 3ec78a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/lms-makedhcpconf.php
Original file line number Diff line number Diff line change
Expand Up @@ -397,7 +397,7 @@ function ($value) {
$net_prefix .= $line_prefix . "\tdefault-lease-time " . $default_lease . ";\n";
}
if ($max_lease != $max_lease_time) {
$net_prefix .= $line_prefix . "\ttmax-lease-time " . $max_lease . ";\n";
$net_prefix .= $line_prefix . "\tmax-lease-time " . $max_lease . ";\n";
}
foreach ($options as $name => $value) {
$net_prefix .= $line_prefix . "\toption " . $name . " " . $value . ";\n";
Expand Down

0 comments on commit 3ec78a6

Please sign in to comment.