2009-11-02 Marcus Brinkmann <marcus@g10code.de>
authorMarcus Brinkmann <mb@g10code.com>
Mon, 2 Nov 2009 17:18:48 +0000 (17:18 +0000)
committerMarcus Brinkmann <mb@g10code.com>
Mon, 2 Nov 2009 17:18:48 +0000 (17:18 +0000)
* debug.h (_gpgme_debug_buffer): Make TAG argument const const.
* debug.c (_gpgme_debug_buffer): Likewise.
* gpgme-tool.c (input_notify, output_notify): Adjust type to new
assuan interface.
* decrypt.c (gpgme_op_decrypt_result): Remove unused variable.
* opassuan.c (gpgme_op_assuan_transact): Fix return value.

src/ChangeLog
src/debug.c
src/debug.h
src/decrypt.c
src/gpgme-tool.c
src/opassuan.c

index 0f50c5c969e32f50971df409ad8a9f7ffdda4e24..8c3689e7c2df9b46e8fe7efd8e061d1267febd85 100644 (file)
@@ -1,5 +1,10 @@
 2009-11-02  Marcus Brinkmann  <marcus@g10code.de>
 
+       * debug.h (_gpgme_debug_buffer): Make TAG argument const const.
+       * debug.c (_gpgme_debug_buffer): Likewise.
+       * gpgme-tool.c (input_notify, output_notify): Adjust type to new
+       assuan interface.
+       * decrypt.c (gpgme_op_decrypt_result): Remove unused variable.
        * opassuan.c (gpgme_op_assuan_transact): Fix return value.
 
 2009-10-30  Marcus Brinkmann  <marcus@g10code.de>
index 979c62566a4b773b2ae35b0df03f2559750cbf81..c0e6155139030cfcb7969dbada2df5e57d67899f 100644 (file)
@@ -266,7 +266,8 @@ _gpgme_debug_end (void **line)
 void
 _gpgme_debug_buffer (int lvl, const char *const fmt,
                     const char *const func, const char *const tagname,
-                    void *tag, const char *const buffer, size_t len)
+                    const void *const tag, const char *const buffer,
+                    size_t len)
 {
   int idx = 0;
   int j;
index ed93531f23605175e4fd54f13fe8866b70e10bf5..ccd48e195305c60fcff0b720edb87b5a79e266d8 100644 (file)
@@ -73,7 +73,8 @@ void _gpgme_debug_end (void **helper);
 
 void _gpgme_debug_buffer (int lvl, const char *const fmt,
                          const char *const func, const char *const tagname,
-                         void *tag, const char *const buffer, size_t len);
+                         const void *const tag, const char *const buffer,
+                         size_t len);
 
 \f
 /* Trace support.  */
index 5e761568e9021ed7bad36635e8a0464499285342..da08e7424b96605bc8d8fe1b78f9a4e5ca1fb49d 100644 (file)
@@ -88,7 +88,6 @@ gpgme_op_decrypt_result (gpgme_ctx_t ctx)
   if (_gpgme_debug_trace ())
     {
       gpgme_recipient_t rcp;
-      int signatures = 0;
 
       if (opd->result.unsupported_algorithm)
        {
index 08cd82a90194a2eb906c0875e555a7074a173be3..e4948e28b6da0cf056bed2eaf41cf62347221857 100644 (file)
@@ -1203,19 +1203,21 @@ cmd_keylist_mode (assuan_context_t ctx, char *line)
 }
 
 
-static void
-input_notify (assuan_context_t ctx, const char *line)
+static gpg_error_t
+input_notify (assuan_context_t ctx, char *line)
 {
   struct server *server = assuan_get_pointer (ctx);
   server->input_enc = server_data_encoding (line);
+  return 0;
 }
 
 
-static void
-output_notify (assuan_context_t ctx, const char *line)
+static gpg_error_t
+output_notify (assuan_context_t ctx, char *line)
 {
   struct server *server = assuan_get_pointer (ctx);
   server->output_enc = server_data_encoding (line);
+  return 0;
 }
 
 
index c48c1a4775a19db34522009d944ec8ab0d6207fd..d01547242969ace93338ae596925f652939cfb2d 100644 (file)
@@ -200,6 +200,5 @@ gpgme_op_assuan_transact (gpgme_ctx_t ctx,
   err = gpgme_op_assuan_transact_ext (ctx, command, data_cb, data_cb_value,
                                      inq_cb, inq_cb_value,
                                      status_cb, status_cb_value, NULL);
-
-  return TRACE_ERR (err);
+  return err;
 }