Mercurial > hg > dhcpcd
changeset 5292:2f2b53b05dc5 draft
Fix compile without DHCP or DHCP6
| author | Roy Marples <roy@marples.name> |
|---|---|
| date | Mon, 01 Jun 2020 15:38:51 +0100 |
| parents | d1e1fe84e3b3 |
| children | b161ecf0b891 |
| files | src/dhcpcd.c |
| diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/src/dhcpcd.c Mon Jun 01 15:33:05 2020 +0100 +++ b/src/dhcpcd.c Mon Jun 01 15:38:51 2020 +0100 @@ -2102,7 +2102,7 @@ break; #else logerrx("No DHCP support"); - goto exit_failure + goto exit_failure; #endif case AF_INET6: #ifdef DHCP6 @@ -2111,7 +2111,7 @@ break; #else logerrx("No DHCP6 support"); - goto exit_failure + goto exit_failure; #endif default: logerrx("Family not specified. Please use -4 or -6.");
