diff options
Diffstat (limited to 'src/libsystemd-network/test-ipv4ll.c')
-rw-r--r-- | src/libsystemd-network/test-ipv4ll.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/src/libsystemd-network/test-ipv4ll.c b/src/libsystemd-network/test-ipv4ll.c index fe70697075..89864fd39c 100644 --- a/src/libsystemd-network/test-ipv4ll.c +++ b/src/libsystemd-network/test-ipv4ll.c @@ -17,7 +17,6 @@ along with systemd; If not, see <http://www.gnu.org/licenses/>. ***/ -#include <assert.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> @@ -72,10 +71,10 @@ int arp_send_probe(int fd, int ifindex, be32_t pa, const struct ether_addr *ha) { struct ether_arp ea = {}; - assert(fd >= 0); - assert(ifindex > 0); - assert(pa != 0); - assert(ha); + assert_se(fd >= 0); + assert_se(ifindex > 0); + assert_se(pa != 0); + assert_se(ha); return arp_network_send_raw_socket(fd, ifindex, &ea); } @@ -84,10 +83,10 @@ int arp_send_announcement(int fd, int ifindex, be32_t pa, const struct ether_addr *ha) { struct ether_arp ea = {}; - assert(fd >= 0); - assert(ifindex > 0); - assert(pa != 0); - assert(ha); + assert_se(fd >= 0); + assert_se(ifindex > 0); + assert_se(pa != 0); + assert_se(ha); return arp_network_send_raw_socket(fd, ifindex, &ea); } |