diff --git a/arpsniffer.c b/arpsniffer.c
index 2b6aac98e344291f513a1b6550259269f559cccf..7057cd59d9b10b8f43f5a734dbe14b321f6eea97 100644
--- a/arpsniffer.c
+++ b/arpsniffer.c
@@ -97,7 +97,7 @@ char *get_ip_address(uint8_t ip[4])
 
 void arp_spoof_alert(char *attacker_ip, char *attacker_mac){
     system("yad --title='WARNING: Serious Alert!' --text='Your System might be under ARP Spoofing Attack!' --button='OK:0' --width=400 --height=150 --image='dialog-error' --no-buttons --center --background='#660000' --timeout=5 --timeout-indicator=bottom");
-    prevent_arp_spoofing(attacker_ip, attacker_mac);
+    // prevent_arp_spoofing(attacker_ip, attacker_mac);
     
     exit(0);
 }