diff options
author | Yousif Masoud <work@hypergraphsoftware.com> | 2018-07-01 11:23:18 +0100 |
---|---|---|
committer | Christoph M. Becker <cmbecker69@gmx.de> | 2018-07-06 11:25:08 +0200 |
commit | 9a21aa77afaa077f820e3e6c20422c339d4a3deb (patch) | |
tree | 7a1cd1b77a93162e0d60b0e90fa269e4338d6ecf | |
parent | bd8e76761f0cfc4dcfd714a2b22f95d993abb84f (diff) | |
download | php-git-9a21aa77afaa077f820e3e6c20422c339d4a3deb.tar.gz |
fixes typo in daemonization DEBUG message after fork: acknoledge -> acknowledge
-rw-r--r-- | sapi/fpm/fpm/fpm_unix.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/fpm/fpm/fpm_unix.c b/sapi/fpm/fpm/fpm_unix.c index 039662a533..ea5cdad6e2 100644 --- a/sapi/fpm/fpm/fpm_unix.c +++ b/sapi/fpm/fpm/fpm_unix.c @@ -535,7 +535,7 @@ int fpm_unix_init_main() /* {{{ */ exit(FPM_EXIT_SOFTWARE); } else { if (readval == 1) { - zlog(ZLOG_DEBUG, "I received a valid acknoledge from the master process, I can exit without error"); + zlog(ZLOG_DEBUG, "I received a valid acknowledge from the master process, I can exit without error"); fpm_cleanups_run(FPM_CLEANUP_PARENT_EXIT); exit(FPM_EXIT_OK); } else { |