aboutsummaryrefslogtreecommitdiffstats
path: root/capture_sync.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-26 02:34:12 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2010-05-26 02:34:12 +0000
commitf1d86af7e43f41a6cd23b4b572290311359d3bcf (patch)
tree0221acf0563d511efc9152f6808746a4f4c71bb8 /capture_sync.c
parent9a1ac9273865bd85f8fe1d68fe67923dac95fe81 (diff)
Use the right system call name.
git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32965 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'capture_sync.c')
-rw-r--r--capture_sync.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/capture_sync.c b/capture_sync.c
index 6e4d052c8a..a3cb248797 100644
--- a/capture_sync.c
+++ b/capture_sync.c
@@ -1549,12 +1549,12 @@ sync_pipe_wait_for_child(int fork_child, gchar **msgp)
} else {
/* What? It had to either have exited, or stopped, or died with
a signal; what happened here? */
- *msgp = g_strdup_printf("Bad status from wait(): %#o",
+ *msgp = g_strdup_printf("Bad status from waitpid(): %#o",
fork_child_status);
ret = -1;
}
} else {
- *msgp = g_strdup_printf("Error from wait(): %s", strerror(errno));
+ *msgp = g_strdup_printf("Error from waitpid(): %s", strerror(errno));
ret = -1;
}
#endif