1
0
mirror of https://github.com/adtools/clib2.git synced 2025-12-08 14:59:05 +00:00

- 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
This commit is contained in:
Olaf Barthel
2005-10-23 11:58:12 +00:00
parent 867e6d500a
commit dda36eb609

View File

@ -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;
}