diff options
Diffstat (limited to 'src/rfc2131.c')
-rw-r--r-- | src/rfc2131.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/rfc2131.c b/src/rfc2131.c index 9f69ed5..bcfa5d6 100644 --- a/src/rfc2131.c +++ b/src/rfc2131.c @@ -2352,10 +2352,10 @@ static void do_options(struct dhcp_context *context, if (fqdn_flags & 0x04) { - p = do_rfc1035_name(p, hostname); + p = do_rfc1035_name(p, hostname, NULL); if (domain) { - p = do_rfc1035_name(p, domain); + p = do_rfc1035_name(p, domain, NULL); *p++ = 0; } } |