You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mt...@apache.org on 2009/08/07 16:30:43 UTC

svn commit: r802022 - /commons/sandbox/runtime/trunk/src/main/native/os/win32/wutil.c

Author: mturk
Date: Fri Aug  7 14:30:43 2009
New Revision: 802022

URL: http://svn.apache.org/viewvc?rev=802022&view=rev
Log:
Use ACR prefix for objects

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/wutil.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/wutil.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/wutil.c?rev=802022&r1=802021&r2=802022&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/wutil.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/wutil.c Fri Aug  7 14:30:43 2009
@@ -30,9 +30,9 @@
     size_t n = wcslen(fname);
 
     if (global)
-        prefix = L"Global\\";
+        prefix = L"Global\\ACR_";
     else
-        prefix = L"Local\\";
+        prefix = L"Local\\ACR_";
 
     wcscpy(rname, prefix);
     ACR_Sha1Base16W(fname, n, rname + wcslen(prefix));