Module: kamailio Branch: 5.3 Commit: 9539be33fa2026ace2090bc51427eb80346ffb4d URL: https://github.com/kamailio/kamailio/commit/9539be33fa2026ace2090bc51427eb80...
Author: Henning Westerholt hw@skalatan.de Committer: Henning Westerholt hw@skalatan.de Date: 2020-02-28T14:54:19+01:00
dmq: small spelling fix in error message
(cherry picked from commit 97e3de1046cf5247f7a462385778409b02680149)
---
Modified: src/modules/dmq/dmq.c
---
Diff: https://github.com/kamailio/kamailio/commit/9539be33fa2026ace2090bc51427eb80... Patch: https://github.com/kamailio/kamailio/commit/9539be33fa2026ace2090bc51427eb80...
---
diff --git a/src/modules/dmq/dmq.c b/src/modules/dmq/dmq.c index 9414e94e84..2b64d0e907 100644 --- a/src/modules/dmq/dmq.c +++ b/src/modules/dmq/dmq.c @@ -282,7 +282,7 @@ static int child_init(int rank) LM_DBG("starting worker process %d\n", i); newpid = fork_process(PROC_RPC, "DMQ WORKER", 0); if(newpid < 0) { - LM_ERR("failed to form process\n"); + LM_ERR("failed to fork process\n"); return -1; } else if(newpid == 0) { /* child - this will loop forever */