From: Zak B. Elep <zakame@zakame.net>
Subject: [PATCH] fixes/spelling
Fix English spelling and grammar errors in the source.
Signed-off-by: Zak B. Elep <zakame@zakame.net>
---
src/main.c | 2 +-
src/perl_utils.c | 2 +-
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/main.c b/src/main.c
index 88a5d7e..b7dd5d0 100644
--- a/src/main.c
+++ b/src/main.c
@@ -262,7 +262,7 @@ void fork_process(void)
/* All users are removed from the parent */
remove_all(UNKEYED | NON_LOGGED | REGULAR | REGISTERED | OP
| OP_ADMIN, 1, 1);
- logprintf(5, "Forked new process, childs pid is %d and parents pid is %d\n", pid, getpid());
+ logprintf(5, "Forked new process, child pid is %d and parent pid is %d\n", pid, getpid());
/* And set current pid of process */
pid = getpid();
}
diff --git a/src/perl_utils.c b/src/perl_utils.c
index 66e10a2..b852875 100644
--- a/src/perl_utils.c
+++ b/src/perl_utils.c
@@ -104,7 +104,7 @@ int perl_init(void)
/* If we are the parent */
if(pid > 0)
{
- logprintf(3, "Forked new script parsing process for script %s, childs pid is %d and parents pid is %d\n", script_list[i], pid, getpid());
+ logprintf(3, "Forked new script parsing process for script %s, child pid is %d and parent pid is %d\n", script_list[i], pid, getpid());
pid = getpid();
}
--
tg: (72e6e12..) fixes/spelling (depends on: upstream)