From f1d86af7e43f41a6cd23b4b572290311359d3bcf Mon Sep 17 00:00:00 2001 From: guy Date: Wed, 26 May 2010 02:34:12 +0000 Subject: Use the right system call name. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@32965 f5534014-38df-0310-8fa8-9805f1628bb7 --- capture_sync.c | 4 ++-- 1 file 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 -- cgit v1.2.3