2001-12-05 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Wed, 5 Dec 2001 20:38:50 +0000 (20:38 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Wed, 5 Dec 2001 20:38:50 +0000 (20:38 +0000)
* engine-gpgsm.c (gpgsm_status_handler): Make it work with current
version of assuan.

gpgme/ChangeLog
gpgme/engine-gpgsm.c

index a5bd6aeba42b1a25c4d221e9372338baf8981691..2f6b2f285a4a97bdda8ffae58ba087c351facbe2 100644 (file)
@@ -1,3 +1,8 @@
+2001-12-05  Marcus Brinkmann  <marcus@g10code.de>
+
+       * engine-gpgsm.c (gpgsm_status_handler): Make it work with current
+       version of assuan.
+
 2001-12-05  Marcus Brinkmann  <marcus@g10code.de>
 
        * engine-gpgsm.c (gpgsm_set_fd): Accept one more argument OPT.
index 7cc68b1001f5f6ca71e14b172d14d82215ff5e5f..04f32a088172417f2967d32ffce46dc21aa968a7 100644 (file)
@@ -476,24 +476,14 @@ gpgsm_status_handler (void *opaque, int pid, int fd)
   ASSUAN_CONTEXT actx = gpgsm->assuan_ctx;
   char *line;
   int linelen;
-  char *next_line;
 
-  assert (fd == gpgsm->assuan_ctx->inbound.fd);
-
-  err = _assuan_read_line (gpgsm->assuan_ctx);
-
-  /* Assuan can currently return more than one line at once.  */
-  line = actx->inbound.line;
-
-  while (line)
+  do
     {
-      next_line = strchr (line, '\n');
-      if (next_line)
-       *next_line++ = 0;
-      linelen = strlen (line);
+      assert (fd == gpgsm->assuan_ctx->inbound.fd);
 
-      if (line[0] == '#' || !linelen)
-       return 0;  /* FIXME */
+      err = _assuan_read_line (gpgsm->assuan_ctx);
+      line = actx->inbound.line;
+      linelen = strlen (line);
 
       if ((linelen >= 2
           && line[0] == 'O' && line[1] == 'K'
@@ -533,9 +523,9 @@ gpgsm_status_handler (void *opaque, int pid, int fd)
          else
            fprintf (stderr, "[UNKNOWN STATUS]%s %s", t.name, rest);
        }
-      line = next_line;
     }
-
+  while (gpgsm->assuan_ctx->inbound.attic.linelen);
+  
   return 0;
 }