Author: mturk Date: Mon Apr 27 18:39:06 2009 New Revision: 769093 URL: http://svn.apache.org/viewvc?rev=769093&view=rev Log: Fix typo. PSID is pointer
Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/user.c Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/user.c URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/user.c?rev=769093&r1=769092&r2=769093&view=diff ============================================================================== --- commons/sandbox/runtime/trunk/src/main/native/os/win32/user.c (original) +++ commons/sandbox/runtime/trunk/src/main/native/os/win32/user.c Mon Apr 27 18:39:06 2009 @@ -119,8 +119,8 @@ ACR_JNI_EXPORT_DECLARE(jboolean, User, equals0)(ACR_JNISTDARGS, jobject a, jobject b) { - PSID uida = ACR_DescriptorGetInt(_E, a); - PSID uidb = ACR_DescriptorGetInt(_E, b); + PSID uida = ACR_DescriptorGetPtr(_E, a); + PSID uidb = ACR_DescriptorGetPtr(_E, b); return V2Z(EqualSid(uida, uidb)); }