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 2010/01/18 15:48:45 UTC

svn commit: r900414 - in /commons/sandbox/runtime/trunk/src/main/native/os/win32: exec.c signals.c subproc.c

Author: mturk
Date: Mon Jan 18 14:48:45 2010
New Revision: 900414

URL: http://svn.apache.org/viewvc?rev=900414&view=rev
Log:
Fix typos

Modified:
    commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c
    commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c
    commons/sandbox/runtime/trunk/src/main/native/os/win32/subproc.c

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c?rev=900414&r1=900413&r2=900414&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/exec.c Mon Jan 18 14:48:45 2010
@@ -234,7 +234,7 @@
             goto cleanup;
     }
     else {
-        if (ep->flags & ACR_PROC_NUL_STDERR)) {
+        if (ep->flags & ACR_PROC_NUL_STDERR) {
             /* Redirect stderr to NUL */
             pipes[PIPE_STDERR_WRS] = nullpipe(GENERIC_WRITE, NULL);
         }

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c?rev=900414&r1=900413&r2=900414&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/signals.c Mon Jan 18 14:48:45 2010
@@ -843,12 +843,12 @@
 
 ACR_DECLARE(int) ACR_SIG_DFL(int signo)
 {
-    return ACR_Signal(signo, SIG_DFL) == SIG_ERR ? -1 : 0 
+    return ACR_Signal(signo, SIG_DFL) == SIG_ERR ? -1 : 0;
 }
 
 ACR_DECLARE(int) ACR_SIG_IGN(int signo)
 {
-    return ACR_Signal(signo, SIG_IGN) == SIG_ERR ? -1 : 0 
+    return ACR_Signal(signo, SIG_IGN) == SIG_ERR ? -1 : 0;
 }
 
 ACR_DECLARE(int) ACR_SignalSetKey(const wchar_t *key)

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/subproc.c
URL: http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/subproc.c?rev=900414&r1=900413&r2=900414&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/subproc.c (original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/subproc.c Mon Jan 18 14:48:45 2010
@@ -346,7 +346,7 @@
         }
     }
     else {
-        if (child.flags & ACR_PROC_NUL_STDERR)) {
+        if (child.flags & ACR_PROC_NUL_STDERR) {
             /* Redirect stderr to NUL */
             pipes[PIPE_STDERR_WRS] = nullpipe(GENERIC_WRITE, NULL);
         }