2007-09-27 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Thu, 27 Sep 2007 11:44:45 +0000 (11:44 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Thu, 27 Sep 2007 11:44:45 +0000 (11:44 +0000)
* assuan-pipe-connect.c (pipe_connect_gpgme): Fix last change.

gpgme/
2007-09-27  Marcus Brinkmann  <marcus@g10code.de>

* w32-glib-io.c (_gpgme_io_pipe), w32-qt-io.c (_gpgme_io_pipe),
w32-io.c (_gpgme_io_pipe), posix-io.c (_gpgme_io_pipe): Fix debug
output.

assuan/assuan-pipe-connect.c
gpgme/ChangeLog
gpgme/posix-io.c
gpgme/w32-glib-io.c
gpgme/w32-io.c
gpgme/w32-qt-io.cpp

index 1b6418f21f55093144e6bd1e3a0d1840833f098a..359eb4947d5e5dee61de622fc8b6f40f1793d6c2 100644 (file)
@@ -571,7 +571,7 @@ pipe_connect_gpgme (assuan_context_t *ctx,
 {
   assuan_error_t err;
   int pid;
-int rp[2];
+  int rp[2];
   int wp[2];
   char mypidstr[50];
   struct spawn_fd_item_s child_fds[3]; /* stdin, stdout, terminating -1 */
@@ -586,10 +586,10 @@ int rp[2];
   sprintf (mypidstr, "%lu", (unsigned long)getpid ());
 
   /* Create the two pipes. */
-  if (_gpgme_io_pipe (rp, 0))
+  if (_gpgme_io_pipe (rp, 1))
     return _assuan_error (ASSUAN_General_Error);
   
-  if (_gpgme_io_pipe (wp, 1))
+  if (_gpgme_io_pipe (wp, 0))
     {
       _gpgme_io_close (rp[0]);
       _gpgme_io_close (rp[1]);
@@ -706,7 +706,7 @@ build_w32_commandline (const char * const *argv, char **cmdline)
 
 
 #ifdef HAVE_W32_SYSTEM
-/* Create pipe where one end end is inheritable.  */
+/* Create pipe where one end is inheritable.  */
 static int
 create_inheritable_pipe (int filedes[2], int for_write)
 {
index 1988d581489a307c83267d30dad6e717265314ce..ed8d8bd975249c0d22b8d642431c8030f507897b 100644 (file)
@@ -1,3 +1,9 @@
+2007-09-27  Marcus Brinkmann  <marcus@g10code.de>
+
+       * w32-glib-io.c (_gpgme_io_pipe), w32-qt-io.c (_gpgme_io_pipe),
+       w32-io.c (_gpgme_io_pipe), posix-io.c (_gpgme_io_pipe): Fix debug
+       output.
+
 2007-09-25  Marcus Brinkmann  <marcus@g10code.de>
 
        * conversion.c, keylist.c: Include <sys/types.h>.
index ca77cf46b779b8946d451ec3cd84829920e8a244..947b6707866a4208da9f77ffc762f79ed86d066b 100644 (file)
@@ -118,7 +118,7 @@ _gpgme_io_pipe (int filedes[2], int inherit_idx)
   int err;
   TRACE_BEG2 (DEBUG_SYSIO, "_gpgme_io_pipe", filedes,
              "inherit_idx=%i (GPGME uses it for %s)",
-             inherit_idx, inherit_idx ? "writing" : "reading");
+             inherit_idx, inherit_idx ? "reading" : "writing");
 
   err = pipe (filedes);
   if (err < 0)
index a0301b67d8db52bf78cbb6710e48edfe5ac474f8..9d7eaf6cc4ff1566d03973022cec3e0c9be4a501 100644 (file)
@@ -221,7 +221,7 @@ _gpgme_io_pipe (int filedes[2], int inherit_idx)
   GIOChannel *chan;
   TRACE_BEG2 (DEBUG_SYSIO, "_gpgme_io_pipe", filedes,
              "inherit_idx=%i (GPGME uses it for %s)",
-             inherit_idx, inherit_idx ? "writing" : "reading");
+             inherit_idx, inherit_idx ? "reading" : "writing");
 
 #define PIPEBUF_SIZE  4096
   if (_pipe (filedes, PIPEBUF_SIZE, O_NOINHERIT | O_BINARY) == -1)
index 9031ffb45ab7def15a03d72191de19888d240fae..e83a2782425f07ccb69c1559a8f8210d145b83c1 100644 (file)
@@ -805,7 +805,7 @@ _gpgme_io_pipe (int filedes[2], int inherit_idx)
   SECURITY_ATTRIBUTES sec_attr;
   TRACE_BEG2 (DEBUG_SYSIO, "_gpgme_io_pipe", filedes,
              "inherit_idx=%i (GPGME uses it for %s)",
-             inherit_idx, inherit_idx ? "writing" : "reading");
+             inherit_idx, inherit_idx ? "reading" : "writing");
 
   memset (&sec_attr, 0, sizeof (sec_attr));
   sec_attr.nLength = sizeof (sec_attr);
index 989d9936220619cd7959659dabe7f881a7122225..50c4a97a22c576963baa5106d4530e9ff075f3df 100644 (file)
@@ -194,7 +194,7 @@ _gpgme_io_pipe (int filedes[2], int inherit_idx)
   QIODevice *chan;
   TRACE_BEG2 (DEBUG_SYSIO, "_gpgme_io_pipe", filedes,
              "inherit_idx=%i (GPGME uses it for %s)",
-             inherit_idx, inherit_idx ? "writing" : "reading");
+             inherit_idx, inherit_idx ? "reading" : "writing");
 
 #define PIPEBUF_SIZE  4096
   if (_pipe (filedes, PIPEBUF_SIZE, O_NOINHERIT | O_BINARY) == -1)