[git] GnuPG - branch, master, updated. gnupg-2.2.7-266-gbbed474

by Werner Koch cvs at cvs.gnupg.org
Sun Nov 11 12:20:42 CET 2018


This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The GNU Privacy Guard".

The branch, master has been updated
       via  bbed4746edcd20946ef9f90d25a69c151238de0a (commit)
      from  b3095c95ef9d2d76b49a6ad1b946fca590380dc9 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit bbed4746edcd20946ef9f90d25a69c151238de0a
Author: Werner Koch <wk at gnupg.org>
Date:   Sun Nov 11 12:20:34 2018 +0100

    gpg: Fix format string in gpgcompose.c
    
    --
    
    For size_t  use "%zu"
    For ssize_t use "%zd"
    
    Signed-off-by: Werner Koch <wk at gnupg.org>

diff --git a/g10/gpgcompose.c b/g10/gpgcompose.c
index 9b69015..6f573ce 100644
--- a/g10/gpgcompose.c
+++ b/g10/gpgcompose.c
@@ -2292,7 +2292,7 @@ sk_esk (const char *option, int argc, char *argv[], void *cookie)
         log_fatal ("encrypt_seskey failed: %s\n", gpg_strerror (err));
 
       if (enckeylen - 1 > sesdek.keylen)
-        log_fatal ("key size is too big: %z\n", enckeylen);
+        log_fatal ("key size is too big: %zu\n", enckeylen);
       else
         {
           ske->seskeylen = (byte)enckeylen;

-----------------------------------------------------------------------

Summary of changes:
 g10/gpgcompose.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)


hooks/post-receive
-- 
The GNU Privacy Guard
http://git.gnupg.org




More information about the Gnupg-commits mailing list