CVSROOT:        /sources/gnash
Module name:    gnash
Changes by:     Sandro Santilli <strk>  07/04/04 15:50:55

Modified files:
        server/asobj   : xmlsocket.cpp 

Log message:
        cleaned up some debugging output

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/gnash/server/asobj/xmlsocket.cpp?cvsroot=gnash&r1=1.20&r2=1.21

Patches:
Index: xmlsocket.cpp
===================================================================
RCS file: /sources/gnash/gnash/server/asobj/xmlsocket.cpp,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -b -r1.20 -r1.21
--- xmlsocket.cpp       4 Apr 2007 14:20:54 -0000       1.20
+++ xmlsocket.cpp       4 Apr 2007 15:50:55 -0000       1.21
@@ -187,7 +187,7 @@
 bool
 XMLSocket::anydata(int fd, MessageList& msgs)
 {
-    GNASH_REPORT_FUNCTION;
+    //GNASH_REPORT_FUNCTION;
 
     fd_set                fdset;
     struct timeval        tval;
@@ -227,14 +227,13 @@
             return false;
         }
         if (ret == 0) {
-            log_msg("%s: There is no data in the socket for fd #%d!",
-                __FUNCTION__, fd);
+            //log_msg("%s: There is no data in the socket for fd #%d!",
+            //   __FUNCTION__, fd);
             return false;
         }
         if (ret > 0) {
-            log_msg("%s: There is data in the socket for fd #%d!",
-                __FUNCTION__, fd);
-            //break;
+            //log_msg("%s: There is data in the socket for fd #%d!",
+            //    __FUNCTION__, fd);
         }
         memset(buf, 0, INBUF);
         ret = ::read(_sockfd, buf, INBUF-2);
@@ -520,7 +519,7 @@
 as_value
 xmlsocket_inputChecker(const fn_call& fn)
 {
-    GNASH_REPORT_FUNCTION;
+    //GNASH_REPORT_FUNCTION;
 
     as_value   method;
     as_value   val;


_______________________________________________
Gnash-commit mailing list
[email protected]
http://lists.gnu.org/mailman/listinfo/gnash-commit

Reply via email to