summaryrefslogtreecommitdiffstats
path: root/ktalkd/ktalkd/announce.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'ktalkd/ktalkd/announce.cpp')
-rw-r--r--ktalkd/ktalkd/announce.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ktalkd/ktalkd/announce.cpp b/ktalkd/ktalkd/announce.cpp
index 1970b92d..d21f27f4 100644
--- a/ktalkd/ktalkd/announce.cpp
+++ b/ktalkd/ktalkd/announce.cpp
@@ -97,7 +97,7 @@ int announce(NEW_CTL_MSG *request, const char *remote_machine, char *disp, int
request->r_name, remote_machine);
} else {
if ((pid = fork())) {
- /* we are the tqparent, so wait for the child */
+ /* we are the parent, so wait for the child */
if (pid == -1) /* the fork failed */
return (FAILED);
status = wait_process(pid);
@@ -242,7 +242,7 @@ int try_Xannounce(NEW_CTL_MSG *request, const char *remote_machine,
new_process();
/*
* I don't know any way how to find that external program run ok
- * so tqparent returns always SUCCESS
+ * so parent returns always SUCCESS
* Well I know a solution - read the pipe :-) - It blocks, so
* we can't wait the reaction of the user
*
@@ -451,7 +451,7 @@ int play_sound(int usercfg)
ktalk_debug(sSoundFile);
if ((pid = fork())) {
- /* we are the tqparent, so wait for the child */
+ /* we are the parent, so wait for the child */
if (pid == -1) /* the fork failed */
{
syslog(LOG_ERR,"Fork before play_sound : FAILED.");