about summary refs log tree commit diff
path: root/sysdeps/unix
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/unix')
-rw-r--r--sysdeps/unix/sysv/linux/ifaddrs.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/sysdeps/unix/sysv/linux/ifaddrs.c b/sysdeps/unix/sysv/linux/ifaddrs.c
index e7b59574d1..6765387bc7 100644
--- a/sysdeps/unix/sysv/linux/ifaddrs.c
+++ b/sysdeps/unix/sysv/linux/ifaddrs.c
@@ -177,15 +177,10 @@ netlink_receive (struct netlink_handle *h)
       nlm_next->size = read_len;
       nlm_next->seq = h->seq;
       if (h->nlm_list == NULL)
-	{
-	  h->nlm_list = nlm_next;
-	  h->end_ptr = nlm_next;
-	}
+	h->nlm_list = nlm_next;
       else
-	{
-	  h->end_ptr->next = nlm_next;
-	  h->end_ptr = nlm_next;
-	}
+	h->end_ptr->next = nlm_next;
+      h->end_ptr = nlm_next;
 
       for (nlmh = (struct nlmsghdr *) buf;
 	   NLMSG_OK (nlmh, (size_t) read_len);