diff options
author | Dan Williams <dcbw@redhat.com> | 2011-01-02 17:24:23 -0600 |
---|---|---|
committer | Dan Williams <dcbw@redhat.com> | 2011-01-02 17:24:23 -0600 |
commit | 0587ef1179c7abb1c83ff5d12ce8e1b587ed0625 (patch) | |
tree | 7e66edf56183e99552e17044433e6eb234359d0b /src/nm-netlink-monitor.c | |
parent | b2f9747dba513fd34dac2b427ad1e0ac6ccb31e9 (diff) | |
parent | 15a9f29a14783fcd1b8e936a8338452737825726 (diff) | |
download | NetworkManager-0587ef1179c7abb1c83ff5d12ce8e1b587ed0625.tar.gz |
Merge remote branch 'origin/master' into wimax
Diffstat (limited to 'src/nm-netlink-monitor.c')
-rw-r--r-- | src/nm-netlink-monitor.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nm-netlink-monitor.c b/src/nm-netlink-monitor.c index 10bf239d5d..13b3ab9850 100644 --- a/src/nm-netlink-monitor.c +++ b/src/nm-netlink-monitor.c @@ -282,7 +282,7 @@ event_connection_setup (NMNetlinkMonitor *self, GError **error) g_return_val_if_fail (priv->io_channel == NULL, FALSE); /* Set up the event listener connection */ - cb = nl_cb_alloc (NL_CB_VERBOSE); + cb = nl_cb_alloc (NL_CB_DEFAULT); priv->nlh_event = nl_handle_alloc_cb (cb); nl_cb_put (cb); if (!priv->nlh_event) { @@ -344,7 +344,7 @@ sync_connection_setup (NMNetlinkMonitor *self, GError **error) #endif /* Set up the event listener connection */ - cb = nl_cb_alloc (NL_CB_VERBOSE); + cb = nl_cb_alloc (NL_CB_DEFAULT); priv->nlh_sync = nl_handle_alloc_cb (cb); nl_cb_put (cb); if (!priv->nlh_sync) { |