From 509a136e58811b6289b646d8e60ebbd238ce2e9f Mon Sep 17 00:00:00 2001 From: Murari Prasad Samal Date: Sun, 1 Feb 2026 18:49:48 +0000 Subject: [PATCH] fix: standardize out-of-memory message in cfg parser --- src/cfgparse-listen.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cfgparse-listen.c b/src/cfgparse-listen.c index bcb085936..1091f0b21 100644 --- a/src/cfgparse-listen.c +++ b/src/cfgparse-listen.c @@ -1731,7 +1731,7 @@ int cfg_parse_listen(const char *file, int linenum, char **args, int kwm) curproxy->table = calloc(1, sizeof *curproxy->table); if (!curproxy->table) { - ha_alert("parsing [%s:%d]: '%s %s' : memory allocation failed\n", + ha_alert("parsing [%s:%d]: '%s %s' : Out of memory\n", file, linenum, args[0], args[1]); err_code |= ERR_ALERT | ERR_FATAL; goto out;