From dda36eb60926ae74b7df7c57d879146eb91a1c28 Mon Sep 17 00:00:00 2001 From: Olaf Barthel Date: Sun, 23 Oct 2005 11:58:12 +0000 Subject: [PATCH] - IsServerProcess() should have read ProcessIsServer(). git-svn-id: file:///Users/olsen/Code/migration-svn-zu-git/logical-line-staging/clib2/trunk@15053 87f5fb63-7c3d-0410-a384-fd976d0f7a62 --- library/socket_obtain_daemon.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/library/socket_obtain_daemon.c b/library/socket_obtain_daemon.c index e01c3c2..bb40c0b 100644 --- a/library/socket_obtain_daemon.c +++ b/library/socket_obtain_daemon.c @@ -1,5 +1,5 @@ /* - * $Id: socket_obtain_daemon.c,v 1.2 2005-10-23 09:53:39 obarthel Exp $ + * $Id: socket_obtain_daemon.c,v 1.3 2005-10-23 11:58:12 obarthel Exp $ * * :ts=4 * @@ -104,10 +104,10 @@ __obtain_daemon_message(VOID) PROFILE_ON(); - /* If it's safe to call IsServerProcess(), ask if the + /* If it's safe to call ProcessIsServer(), ask if the "struct DaemonMessage" pointer is valid. If it's not, set the message pointer to NULL, ignoring it altogether. */ - if(have_server_api && NOT IsServerProcess()) + if(have_server_api && NOT __ProcessIsServer(NULL)) dm = NULL; }