From 135251222f62e4fe8a61ea9677376377ab14c5c9 Mon Sep 17 00:00:00 2001 From: Walt Gribben Date: Tue, 28 Feb 2006 03:07:39 +0000 Subject: [PATCH] *** empty log message *** svn path=/trunk/boinc/; revision=9577 --- client/main.C | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/main.C b/client/main.C index 022db668d8..0933b3e33b 100644 --- a/client/main.C +++ b/client/main.C @@ -318,7 +318,7 @@ int check_unique_instance() { } strcat( buf, RUN_MUTEX); - HANDLE h = CreateMutex(NULL, true, RUN_MUTEX); + HANDLE h = CreateMutex(NULL, true, buf); if ((h==0) || (GetLastError() == ERROR_ALREADY_EXISTS)) { return ERR_ALREADY_RUNNING; }