Module: kamailio
Branch: 5.2
Commit: d0acd76775659407caeaaa87f29cfa617014ed44
URL:
https://github.com/kamailio/kamailio/commit/d0acd76775659407caeaaa87f29cfa6…
Author: Henning Westerholt <hw(a)skalatan.de>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2020-02-28T14:53:56+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/d0acd76775659407caeaaa87f29cfa6…
Patch:
https://github.com/kamailio/kamailio/commit/d0acd76775659407caeaaa87f29cfa6…
---
diff --git a/src/modules/dmq/dmq.c b/src/modules/dmq/dmq.c
index ebfa021119..4ef263eecc 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_NOCHLDINIT, "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 */