diff options
Diffstat (limited to 'meta-extras/packages/networkmanager/files/libnlfix.patch')
-rw-r--r-- | meta-extras/packages/networkmanager/files/libnlfix.patch | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/meta-extras/packages/networkmanager/files/libnlfix.patch b/meta-extras/packages/networkmanager/files/libnlfix.patch new file mode 100644 index 0000000000..69f4922ea0 --- /dev/null +++ b/meta-extras/packages/networkmanager/files/libnlfix.patch | |||
@@ -0,0 +1,29 @@ | |||
1 | Index: trunk/src/nm-netlink.c | ||
2 | =================================================================== | ||
3 | --- trunk.orig/src/nm-netlink.c 2007-09-25 22:37:50.000000000 +0100 | ||
4 | +++ trunk/src/nm-netlink.c 2009-05-16 12:44:26.000000000 +0100 | ||
5 | @@ -52,16 +52,20 @@ | ||
6 | struct nl_handle * | ||
7 | nm_netlink_get_default_handle (void) | ||
8 | { | ||
9 | + struct nl_cb *cb; | ||
10 | + | ||
11 | if (def_nl_handle) | ||
12 | return def_nl_handle; | ||
13 | |||
14 | - def_nl_handle = nl_handle_alloc_nondefault (NL_CB_VERBOSE); | ||
15 | - g_assert (def_nl_handle); | ||
16 | + cb = nl_cb_alloc(NL_CB_VERBOSE); | ||
17 | + def_nl_handle = nl_handle_alloc_cb (cb); | ||
18 | + if (!def_nl_handle) { | ||
19 | + nm_warning ("couldn't allocate netlink handle."); | ||
20 | + return NULL; | ||
21 | + } | ||
22 | |||
23 | - nl_handle_set_pid (def_nl_handle, (pthread_self () << 16 | getpid ())); | ||
24 | if (nl_connect (def_nl_handle, NETLINK_ROUTE) < 0) { | ||
25 | nm_error ("couldn't connect to netlink: %s", nl_geterror ()); | ||
26 | - nl_handle_destroy (def_nl_handle); | ||
27 | return NULL; | ||
28 | } | ||
29 | |||