*** empty log message ***
diff --git a/extensions/ebt_ip.c b/extensions/ebt_ip.c
index 4a9c8dc..ddd9944 100644
--- a/extensions/ebt_ip.c
+++ b/extensions/ebt_ip.c
@@ -84,13 +84,13 @@
 	if ((p = strrchr(address, '/')) != NULL) {
 		*p = '\0';
 		if (ip_mask(p + 1, (unsigned char *)msk))
-			print_error("Problem with the ip mask");
+			print_error("Problem with the IP mask");
 	}
 	else
 		*msk = 0xFFFFFFFF;
 
 	if (undot_ip(address, (unsigned char *)addr))
-		print_error("Problem with the ip address");
+		print_error("Problem with the IP address");
 	*addr = *addr & *msk;
 }