Advertisement
Guest User

Untitled

a guest
Oct 31st, 2014
757
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C 0.64 KB | None | 0 0
  1. --- network-manager-0.9.8.8.orig/src/nm-manager.c   2014-08-25 14:57:30.000000000 -0700
  2. +++ network-manager-0.9.8.8/src/nm-manager.c    2014-08-25 13:54:33.075879849 -0700
  3. @@ -1929,6 +1929,17 @@
  4.         return;
  5.     }
  6.  
  7. +   /*
  8. +    * Explicitly ignore uap0
  9. +    */
  10. +   if ((devtype == NM_DEVICE_TYPE_WIFI) && g_strcmp0 ("uap0", iface) == 0) {
  11. +       nm_log_info (LOGD_HW, "(%s): ignoring UAP wireless iface (ifindex: %d)",
  12. +                    iface, nm_device_get_ifindex (device));
  13. +
  14. +       g_object_unref (device);
  15. +       return;
  16. +   }
  17. +
  18.     nm_device_set_connection_provider (device, NM_CONNECTION_PROVIDER (priv->settings));
  19.  
  20.     priv->devices = g_slist_append (priv->devices, device);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement