Module: kamailio
Branch: 5.2
Commit: cf9b59a54a49201bd1022a3fb1b7688b45ed3536
URL:
https://github.com/kamailio/kamailio/commit/cf9b59a54a49201bd1022a3fb1b7688…
Author: Henning Westerholt <hw(a)skalatan.de>
Committer: Henning Westerholt <hw(a)skalatan.de>
Date: 2019-09-06T12:14:26+02:00
core: spelling fix in error message related to pid/pgid chown
(cherry picked from commit 21afc6081c3044b4f754e6a34ea67fd98f2e3af9)
---
Modified: src/core/daemonize.c
---
Diff:
https://github.com/kamailio/kamailio/commit/cf9b59a54a49201bd1022a3fb1b7688…
Patch:
https://github.com/kamailio/kamailio/commit/cf9b59a54a49201bd1022a3fb1b7688…
---
diff --git a/src/core/daemonize.c b/src/core/daemonize.c
index 98bf04dc78..7301ddc7c8 100644
--- a/src/core/daemonize.c
+++ b/src/core/daemonize.c
@@ -357,7 +357,7 @@ int daemonize(char* name, int status_wait)
fprintf(pid_stream, "%i\n", (int)pid);
fclose(pid_stream);
if(chown(pid_file, pid_uid, pid_gid)<0) {
- LM_ERR("failed to chwon PID file: %s\n", strerror(errno));
+ LM_ERR("failed to chown PID file: %s\n", strerror(errno));
goto error;
}
}
@@ -385,7 +385,7 @@ int daemonize(char* name, int status_wait)
fprintf(pid_stream, "%i\n", (int)pid);
fclose(pid_stream);
if(chown(pgid_file, pid_uid, pid_gid)<0) {
- LM_ERR("failed to chwon PGID file: %s\n", strerror(errno));
+ LM_ERR("failed to chown PGID file: %s\n", strerror(errno));
goto error;
}
}