mirror of
https://gitlab.freedesktop.org/NetworkManager/NetworkManager.git
synced 2026-05-05 16:58:02 +02:00
core: NL_CB_VERBOSE breaks error propagation (rh #594578)
Plus we don't really need the VERBOSE bits anyway.
This commit is contained in:
parent
d103bfd99e
commit
3600a303f1
1 changed files with 2 additions and 2 deletions
|
|
@ -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) {
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue