diff options
| author | Michael Biebl <biebl@debian.org> | 2019-09-06 09:26:09 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2019-09-06 09:26:09 +0200 |
| commit | 473dd863356491d7b984baef9c72e886c774a451 (patch) | |
| tree | f7863ed06a67003b8a362e1146a1dff22ea16c55 /src/dhcp | |
| parent | df49315721969c1013256ce92c6a0f825450f814 (diff) | |
| parent | 555dfa331e295a3a687a7cc6870e1349ffed8f26 (diff) | |
Update upstream source from tag 'upstream/1.20.2'
Update to upstream version '1.20.2' with Debian dir 0356038b3aea3f0577988e0b1019b86c657592cd
Diffstat (limited to 'src/dhcp')
| -rw-r--r-- | src/dhcp/nm-dhcp-nettools.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/src/dhcp/nm-dhcp-nettools.c b/src/dhcp/nm-dhcp-nettools.c index 3aa92180..9a0c6906 100644 --- a/src/dhcp/nm-dhcp-nettools.c +++ b/src/dhcp/nm-dhcp-nettools.c @@ -1208,18 +1208,6 @@ ip4_start (NMDhcpClient *client, return TRUE; } -static gboolean -ip6_start (NMDhcpClient *client, - const char *dhcp_anycast_addr, - const struct in6_addr *ll_addr, - NMSettingIP6ConfigPrivacy privacy, - guint needed_prefixes, - GError **error) -{ - nm_utils_error_set_literal (error, NM_UTILS_ERROR_UNKNOWN, "nettools plugin does not support IPv6"); - return FALSE; -} - static void stop (NMDhcpClient *client, gboolean release) @@ -1265,7 +1253,6 @@ nm_dhcp_nettools_class_init (NMDhcpNettoolsClass *class) object_class->dispose = dispose; client_class->ip4_start = ip4_start; - client_class->ip6_start = ip6_start; client_class->accept = _accept; client_class->decline = decline; client_class->stop = stop; |