Enlightenment CVS committal

Author  : sebastid
Project : e17
Module  : libs/ecore

Dir     : e17/libs/ecore/src/lib/ecore_file


Modified Files:
        ecore_file_download.c 


Log Message:
Remove debug.

===================================================================
RCS file: 
/cvsroot/enlightenment/e17/libs/ecore/src/lib/ecore_file/ecore_file_download.c,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -3 -r1.2 -r1.3
--- ecore_file_download.c       17 Jun 2005 23:52:32 -0000      1.2
+++ ecore_file_download.c       18 Jun 2005 00:23:00 -0000      1.3
@@ -208,17 +208,14 @@
 
        /* Stupid curl, why can't I get the fd to the current added job? */
        curl_multi_fdset(curlm, &read_set, &write_set, &exc_set, &fd_max);
-       printf("max: %d\n", fd_max);
        for (fd = 0; fd <= fd_max; fd++)
          {
             if (!FD_ISSET(fd, &_current_fd_set))
               {
-                 printf("Found %d!!!\n", fd);
                  flags = 0;
                  if (FD_ISSET(fd, &read_set)) flags |= ECORE_FD_READ;
                  if (FD_ISSET(fd, &write_set)) flags |= ECORE_FD_WRITE;
                  if (FD_ISSET(fd, &exc_set)) flags |= ECORE_FD_ERROR;
-                 printf("flags: %d\n", flags);
                  if (flags)
                    {
                       FD_SET(fd, &_current_fd_set);
@@ -230,7 +227,6 @@
          }
        if (!job->fd_handler)
          {
-            printf("No fd handler?\n");
             curl_easy_cleanup(job->curl);
             fclose(job->file);
             free(job);




-------------------------------------------------------
SF.Net email is sponsored by: Discover Easy Linux Migration Strategies
from IBM. Find simple to follow Roadmaps, straightforward articles,
informative Webcasts and more! Get everything you need to get up to
speed, fast. http://ads.osdn.com/?ad_id=7477&alloc_id=16492&op=click
_______________________________________________
enlightenment-cvs mailing list
enlightenment-cvs@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/enlightenment-cvs

Reply via email to