isc-dhcpd: Generate correct delimiter in hex strings
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
This commit is contained in:
parent
a2438c834d
commit
4590decf5b
2 changed files with 7 additions and 7 deletions
|
@ -10,7 +10,7 @@ include $(TOPDIR)/rules.mk
|
||||||
PKG_NAME:=isc-dhcp
|
PKG_NAME:=isc-dhcp
|
||||||
UPSTREAM_NAME:=dhcp
|
UPSTREAM_NAME:=dhcp
|
||||||
PKG_VERSION:=4.4.3-P1
|
PKG_VERSION:=4.4.3-P1
|
||||||
PKG_RELEASE:=5
|
PKG_RELEASE:=6
|
||||||
|
|
||||||
PKG_LICENSE:=BSD-3-Clause
|
PKG_LICENSE:=BSD-3-Clause
|
||||||
PKG_LICENSE_FILES:=LICENSE
|
PKG_LICENSE_FILES:=LICENSE
|
||||||
|
|
|
@ -294,17 +294,17 @@ static_host_add() {
|
||||||
for option in $force_send; do
|
for option in $force_send; do
|
||||||
case "$option" in
|
case "$option" in
|
||||||
hostname)
|
hostname)
|
||||||
extra_options="$extra_options${extra_options:+ }0c" ;;
|
extra_options="$extra_options${extra_options:+,}0c" ;;
|
||||||
domain-name)
|
domain-name)
|
||||||
extra_options="$extra_options${extra_options:+ }0f" ;;
|
extra_options="$extra_options${extra_options:+,}0f" ;;
|
||||||
renewal-time)
|
renewal-time)
|
||||||
extra_options="$extra_options${extra_options:+ }3a" ;;
|
extra_options="$extra_options${extra_options:+,}3a" ;;
|
||||||
rebinding-time)
|
rebinding-time)
|
||||||
extra_options="$extra_options${extra_options:+ }3b" ;;
|
extra_options="$extra_options${extra_options:+,}3b" ;;
|
||||||
fqdn)
|
fqdn)
|
||||||
extra_options="$extra_options${extra_options:+ }51" ;;
|
extra_options="$extra_options${extra_options:+,}51" ;;
|
||||||
routes)
|
routes)
|
||||||
extra_options="$extra_options${extra_options:+ }79" ;;
|
extra_options="$extra_options${extra_options:+,}79" ;;
|
||||||
*)
|
*)
|
||||||
echo "unknown option: $option" >&2 ;;
|
echo "unknown option: $option" >&2 ;;
|
||||||
esac
|
esac
|
||||||
|
|
Loading…
Reference in a new issue