CLEANUP: log: Rename Alert/Warning in ha_alert/ha_warning
diff --git a/src/filters.c b/src/filters.c
index c1d3f87..bf188b5 100644
--- a/src/filters.c
+++ b/src/filters.c
@@ -291,8 +291,8 @@
 	for (px = proxy; px; px = px->next) {
 		err_code |= flt_init(px);
 		if (err_code & (ERR_ABORT|ERR_FATAL)) {
-			Alert("Failed to initialize filters for proxy '%s'.\n",
-			      px->id);
+			ha_alert("Failed to initialize filters for proxy '%s'.\n",
+				 px->id);
 			return err_code;
 		}
 	}
@@ -310,8 +310,8 @@
 	for (px = proxy; px; px = px->next) {
 		err_code = flt_init_per_thread(px);
 		if (err_code & (ERR_ABORT|ERR_FATAL)) {
-			Alert("Failed to initialize filters for proxy '%s' for thread %u.\n",
-			      px->id, tid);
+			ha_alert("Failed to initialize filters for proxy '%s' for thread %u.\n",
+				 px->id, tid);
 			return 0;
 		}
 	}