Missing backslash in "\d+" for last digit of dotted quad.
Signed-off-by: Philip Prindeville <philipp@redfish-solutions.com>
PKG_NAME:=isc-dhcp
UPSTREAM_NAME:=dhcp
PKG_VERSION:=4.4.0
-PKG_RELEASE:=1
+PKG_RELEASE:=2
PKG_LICENSE:=BSD-3-Clause
PKG_LICENSE_FILES:=LICENSE
typeof() {
echo "$1" | awk '
-/^\d+\.\d+\.\d+\.d+$/ { print "ip\n"; next; }
+/^\d+\.\d+\.\d+\.\d+$/ { print "ip\n"; next; }
/^(true|false)$/ { print "bool\n"; next; }
/^\d+$/ { print "integer\n"; next; }
/^"[^"]*"$/ { print "string\n"; next; }