cvs-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Cvs-cvs] Changes to ccvs/src/client.c


From: Derek Robert Price
Subject: [Cvs-cvs] Changes to ccvs/src/client.c
Date: Thu, 29 Sep 2005 00:42:50 -0400

Index: ccvs/src/client.c
diff -u ccvs/src/client.c:1.431 ccvs/src/client.c:1.432
--- ccvs/src/client.c:1.431     Sun Sep 25 00:28:51 2005
+++ ccvs/src/client.c   Thu Sep 29 04:42:48 2005
@@ -2820,7 +2820,7 @@
     FD_ZERO (&wfds);
     FD_SET (STDOUT_FILENO, &wfds);
     errno = 0;
-    s = select (STDOUT_FILENO+1, NULL, &wfds, NULL, NULL);
+    s = fd_select (STDOUT_FILENO+1, NULL, &wfds, NULL, NULL);
     if (s < 1 && errno != 0)
         perror ("cannot write to stdout");
     fwrite (args, sizeof *args, len, stdout);
@@ -2877,7 +2877,7 @@
     FD_ZERO (&wfds);
     FD_SET (STDERR_FILENO, &wfds);
     errno = 0;
-    s = select (STDERR_FILENO+1, NULL, &wfds, NULL, NULL);
+    s = fd_select (STDERR_FILENO+1, NULL, &wfds, NULL, NULL);
     /*
      * If stderr has problems, then adding a call to
      *   perror ("cannot write to stderr")




reply via email to

[Prev in Thread] Current Thread [Next in Thread]