summaryrefslogtreecommitdiff
path: root/src/rfc2131.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/rfc2131.c')
-rw-r--r--src/rfc2131.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rfc2131.c b/src/rfc2131.c
index f74ecb9..c0f649a 100644
--- a/src/rfc2131.c
+++ b/src/rfc2131.c
@@ -1889,8 +1889,8 @@ static void do_options(struct dhcp_context* context, struct dhcp_packet* mess, u
*(p++) = 255;
if (fqdn_flags & 0x04) {
- p = do_rfc1035_name(p, hostname);
- if (domain) p = do_rfc1035_name(p, domain);
+ p = do_rfc1035_name(p, hostname, NULL);
+ if (domain) p = do_rfc1035_name(p, domain, NULL);
*p++ = 0;
} else {
memcpy(p, hostname, strlen(hostname));