2001-12-13 Marcus Brinkmann <marcus@gnu.org>
authorMarcus Brinkmann <mb@g10code.com>
Thu, 13 Dec 2001 21:38:11 +0000 (21:38 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Thu, 13 Dec 2001 21:38:11 +0000 (21:38 +0000)
* assuan-connect.c (assuan_pipe_connect): Remove code that closes
all the little file descriptors we set up.

assuan/ChangeLog
assuan/assuan-connect.c

index 8d05c0e920e46d8d05ca68696fea30eb27fd957c..d74fa03033b223a31aa3c007312ea4d013821658 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-13  Marcus Brinkmann  <marcus@gnu.org>
+
+       * assuan-connect.c (assuan_pipe_connect): Remove code that closes
+       all the little file descriptors we set up.
+
 2001-12-13  Marcus Brinkmann  <marcus@gnu.org>
 
        * assuan-buffer.c (assuan_read_line): Fix order of execution to
index 683c7f0606f527f86ddec6170ebd093e49018793..b8ce1a9c2176d6fb31039c98ac3565e55a001056 100644 (file)
@@ -137,26 +137,10 @@ assuan_pipe_connect (ASSUAN_CONTEXT *ctx, const char *name, char *const argv[])
 
   if ((*ctx)->pid == 0)
     {
-      int i, n;
       char errbuf[512];
-#ifdef HAVE_JNLIB_LOGGING
-      int log_fd = log_get_fd (); 
-#endif
-      /* close all files which will not be duped but keep stderr
-         and log_stream for now */
-      n = sysconf (_SC_OPEN_MAX);
-      if (n < 0)
-        n = MAX_OPEN_FDS;
-      for (i=0; i < n; i++)
-        {
-          if (i != fileno (stderr) 
-#ifdef HAVE_JNLIB_LOGGING
-              && i != log_fd
-#endif
-              && i != rp[1] && i != wp[0])
-            close(i);
-        }
-      errno = 0;
+
+      close (rp[0]);
+      close (wp[1]);
 
       /* Dup handles and to stdin/stdout and exec */
       if (rp[1] != STDOUT_FILENO)