aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortradke <tradke@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2002-04-19 16:55:39 +0000
committertradke <tradke@bfcf8e34-485d-4d46-a995-1fd6fa6fb178>2002-04-19 16:55:39 +0000
commit90c9a460dc8e58beb1bf3437f3dfcc85489e6538 (patch)
treeacc922082e817a6f37b5bdbf3c8930c45d581a8d
parent3f54059d588a977cd10d21d440ef9b34ea8c9ba7 (diff)
Commented out a debug message. This close PR CactusPUGHIO/974.
git-svn-id: http://svn.cactuscode.org/arrangements/CactusPUGHIO/IsoSurfacer/trunk@55 bfcf8e34-485d-4d46-a995-1fd6fa6fb178
-rw-r--r--src/Sockets.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/Sockets.c b/src/Sockets.c
index 8917797..685a57a 100644
--- a/src/Sockets.c
+++ b/src/Sockets.c
@@ -437,11 +437,15 @@ IsoCommand *Iso_PollCommand(const cGH *GH,IsoCommand *cmd)
/* puts("EndIsoRead"); */
/* Data arriving on an already-connected socket. */
if (r <= 0){
+#if 0
puts("Destroy Socket");
+#endif
SocketDestroy(this, &controlsocklist);
+#if 0
puts("done destroy");
if(controlsocklist==NULL) puts("*********It did the right thing");
- else puts("*******baaad socket... bad bad bad...");
+#endif
+ if(controlsocklist) puts("*******Failed to destroy socket*******");
return NULL;
}
else return cmd; /* return immediately with the new command (first available) */