summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJiří Klimeš <jklimes@redhat.com>2014-08-21 10:35:16 +0200
committerJiří Klimeš <jklimes@redhat.com>2014-08-21 10:35:16 +0200
commitc54e6a95ff0957fb9d5c51505c8c3dd036600ff5 (patch)
tree2f7f5d3dea154bba23ac3965bbd6c0add4a1ecba
parent7543f8d5e59af3b6dc480065a0c40212c658072d (diff)
platform: (trivial) don't shadow link(3) in NMLinuxPlatform
Reported by Jordan Messina
-rw-r--r--src/platform/nm-linux-platform.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/platform/nm-linux-platform.c b/src/platform/nm-linux-platform.c
index d6c0a44ca9..eb448e0e7e 100644
--- a/src/platform/nm-linux-platform.c
+++ b/src/platform/nm-linux-platform.c
@@ -2138,7 +2138,7 @@ link_get_all (NMPlatform *platform)
}
static gboolean
-_nm_platform_link_get (NMPlatform *platform, int ifindex, NMPlatformLink *link)
+_nm_platform_link_get (NMPlatform *platform, int ifindex, NMPlatformLink *l)
{
NMLinuxPlatformPrivate *priv = NM_LINUX_PLATFORM_GET_PRIVATE (platform);
auto_nl_object struct rtnl_link *rtnllink = NULL;
@@ -2146,7 +2146,7 @@ _nm_platform_link_get (NMPlatform *platform, int ifindex, NMPlatformLink *link)
rtnllink = rtnl_link_get (priv->link_cache, ifindex);
if (rtnllink) {
if (link_is_announceable (platform, rtnllink)) {
- if (init_link (platform, link, rtnllink))
+ if (init_link (platform, l, rtnllink))
return TRUE;
}
}
@@ -2171,7 +2171,7 @@ static gboolean
link_add (NMPlatform *platform, const char *name, NMLinkType type, const void *address, size_t address_len)
{
int r;
- struct nl_object *link;
+ struct nl_object *l;
if (type == NM_LINK_TYPE_BOND) {
/* When the kernel loads the bond module, either via explicit modprobe
@@ -2189,15 +2189,15 @@ link_add (NMPlatform *platform, const char *name, NMLinkType type, const void *a
debug ("link: add link '%s' of type '%s' (%d)",
name, type_to_string (type), (int) type);
- link = build_rtnl_link (0, name, type);
+ l = build_rtnl_link (0, name, type);
g_assert ( (address != NULL) ^ (address_len == 0) );
if (address) {
auto_nl_addr struct nl_addr *nladdr = _nm_nl_addr_build (AF_LLC, address, address_len);
- rtnl_link_set_addr ((struct rtnl_link *) link, nladdr);
+ rtnl_link_set_addr ((struct rtnl_link *) l, nladdr);
}
- return add_object (platform, link);
+ return add_object (platform, l);
}
static struct rtnl_link *