chiark / gitweb /
core: priorize notification fd processing over notification fd process via sd-event...
[elogind.git] / src / core / loopback-setup.c
index 1999959946c8e103ed4ecc70bd700682a103ecca..d3669e9e32cbc498ef802499ee5cf50b2ebc5226 100644 (file)
@@ -89,7 +89,7 @@ static int start_interface(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_
         _cleanup_sd_rtnl_message_unref_ sd_rtnl_message *req = NULL;
         int r;
 
-        r = sd_rtnl_message_link_new(RTM_NEWLINK, if_loopback, &req);
+        r = sd_rtnl_message_link_new(RTM_SETLINK, if_loopback, &req);
         if (r < 0)
                 return r;
 
@@ -97,10 +97,6 @@ static int start_interface(sd_rtnl *rtnl, int if_loopback, struct in_addr *ipv4_
         if (r < 0)
                 return r;
 
-        r = sd_rtnl_message_append_in_addr(req, IFA_LOCAL, ipv4_address);
-        if (r < 0)
-                return r;
-
         r = sd_rtnl_call_async(rtnl, req, &pipe_handler, counter, 0, NULL);
         if (r < 0)
                 return r;