diff options
| author | Michael Biebl <biebl@debian.org> | 2018-07-03 23:54:48 +0200 |
|---|---|---|
| committer | Michael Biebl <biebl@debian.org> | 2018-07-03 23:54:48 +0200 |
| commit | 54de7f04d1fac5f29fd54ec4120ba2fc4f9b5714 (patch) | |
| tree | 87729385ff8de744dc44d0b4cc75916494b2fd38 /src/nm-netns.c | |
| parent | 680d3db45106e7a18665a366e1b57e58cef61506 (diff) | |
| parent | 329b15110c4b183d7a47552abe3a6a6ff933e817 (diff) | |
Merge branch 'experimental'
Diffstat (limited to 'src/nm-netns.c')
| -rw-r--r-- | src/nm-netns.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nm-netns.c b/src/nm-netns.c index 96ab2b35..5952a490 100644 --- a/src/nm-netns.c +++ b/src/nm-netns.c @@ -38,7 +38,6 @@ NM_GOBJECT_PROPERTIES_DEFINE_BASE ( typedef struct { NMPlatform *platform; NMPNetns *platform_netns; - bool log_with_ptr; } NMNetnsPrivate; struct _NMNetns { @@ -113,13 +112,10 @@ constructed (GObject *object) { NMNetns *self = NM_NETNS (object); NMNetnsPrivate *priv = NM_NETNS_GET_PRIVATE (self); - gboolean log_with_ptr; if (!priv->platform) g_return_if_reached (); - log_with_ptr = nm_platform_get_log_with_ptr (priv->platform); - priv->platform_netns = nm_platform_netns_get (priv->platform); G_OBJECT_CLASS (nm_netns_parent_class)->constructed (object); |