Author: mturk
Date: Sun Jul 17 14:04:36 2011
New Revision: 1147618

URL: http://svn.apache.org/viewvc?rev=1147618&view=rev
Log:
Axe accidental commit

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

Modified: commons/sandbox/runtime/trunk/src/main/native/os/win32/localsock.c
URL: 
http://svn.apache.org/viewvc/commons/sandbox/runtime/trunk/src/main/native/os/win32/localsock.c?rev=1147618&r1=1147617&r2=1147618&view=diff
==============================================================================
--- commons/sandbox/runtime/trunk/src/main/native/os/win32/localsock.c 
(original)
+++ commons/sandbox/runtime/trunk/src/main/native/os/win32/localsock.c Sun Jul 
17 14:04:36 2011
@@ -136,8 +136,6 @@ ACR_NET_EXPORT(jint, LocalServerEndpoint
         SOCKADDR_RELEASE(ba, aa);
         return rc;
     }
-    fprintf(stdout, "Creating %S\n", sname);
-    fflush(stdout);
     sfh = CreateFileW(sname, GENERIC_READ | GENERIC_WRITE,
                       FILE_SHARE_READ | FILE_SHARE_WRITE | FILE_SHARE_DELETE,
                       GetSaWithNullDacl(env, JNI_FALSE), CREATE_NEW,
@@ -146,8 +144,6 @@ ACR_NET_EXPORT(jint, LocalServerEndpoint
     if (IS_INVALID_HANDLE(sfh)) {
         rc = GetLastError();
         SOCKADDR_RELEASE(ba, aa);
-            fprintf(stdout, "Failed Creating %S\n", sname);
-                fflush(stdout);
         return rc;
     }
     sa.sin_port        = 0;


Reply via email to