From b3866b0442f55b97833981a99c601f2143d10315 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Wed, 22 Nov 2023 18:34:00 +0100 Subject: Kernel/RTL8139/Networking fixes This is just a commit containing multiple fixes since I am too lazy to split them up. --- kernel/network/arp.c | 1 - 1 file changed, 1 deletion(-) (limited to 'kernel/network/arp.c') diff --git a/kernel/network/arp.c b/kernel/network/arp.c index b5825be..baff528 100644 --- a/kernel/network/arp.c +++ b/kernel/network/arp.c @@ -83,7 +83,6 @@ void send_arp_request(const u8 ip[4]) { } int get_mac_from_ip(const u8 ip[4], u8 mac[6]) { - print_ip("ARP GETTING MAC FROM IP: ", ip); for (int i = 0; i < 10; i++) { if (0 != memcmp(arp_table[i].ip, ip, sizeof(u8[4]))) continue; -- cgit v1.2.3