From 287e866cf67faa738ac44007d79ad3388b4d310a Mon Sep 17 00:00:00 2001 From: Eric Heien Date: Tue, 25 Mar 2003 22:57:15 +0000 Subject: [PATCH] compile fix svn path=/trunk/boinc/; revision=1100 --- client/win/win_util.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/client/win/win_util.cpp b/client/win/win_util.cpp index 7739f5394e..a578aec82a 100755 --- a/client/win/win_util.cpp +++ b/client/win/win_util.cpp @@ -1,6 +1,5 @@ #include #include "win_util.h" -#include "util.h" #define OS_UNKNOWN 0 #define OS_WIN95 1 @@ -76,7 +75,7 @@ int UtilGetRegKey(char *name, DWORD &keyval) DWORD value; HKEY boinc_key; - safe_strncpy( str, "SOFTWARE\\BOINC\\", sizeof(str) ); + strncpy( str, "SOFTWARE\\BOINC\\", sizeof(str) ); strcat( str, name ); if ( OSVersion == OS_WIN95 ) {