Module: kamailio Branch: master Commit: 97e3de1046cf5247f7a462385778409b02680149 URL: https://github.com/kamailio/kamailio/commit/97e3de1046cf5247f7a462385778409b...
Author: Henning Westerholt hw@skalatan.de Committer: Henning Westerholt hw@skalatan.de Date: 2020-02-28T14:52:14+01:00
dmq: small spelling fix in error message
---
Modified: src/modules/dmq/dmq.c
---
Diff: https://github.com/kamailio/kamailio/commit/97e3de1046cf5247f7a462385778409b... Patch: https://github.com/kamailio/kamailio/commit/97e3de1046cf5247f7a462385778409b...
---
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 */