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/09/22 15:13:58 UTC

svn commit: r817648 - /commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c

Author: mturk
Date: Tue Sep 22 13:13:57 2009
New Revision: 817648

URL: http://svn.apache.org/viewvc?rev=817648&view=rev
Log:
TempFile now uses extra sufix arg

Modified:
    commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c

Modified: commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c?rev=817648&r1=817647&r2=817648&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/test/testsuite.c Tue Sep 22 13:13:57 2009
@@ -131,7 +131,7 @@
             ACR_TempPathGet(NULL, "/foo:./bar::"));
 #endif
     fd = ACR_TempFileMake(NULL, ACR_TempPathGet(NULL, NULL),
-                          STD_PREFIX, 0);
+                          STD_PREFIX, NULL, 0);
     if (fd < 0)
         failed++;
     else {
@@ -142,7 +142,7 @@
     }
 
     fd = ACR_TempFileMake(NULL, ACR_TempPathGet(NULL, NULL),
-                          STD_PREFIX, 1);
+                          STD_PREFIX, NULL, 1);
     if (fd < 0)
         failed++;
     else {