mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-03 22:56:33 +02:00
Fix size_t vs int issues.
This commit is contained in:
parent
9cb6557121
commit
1c684df5b8
12 changed files with 36 additions and 13 deletions
|
@ -1,3 +1,8 @@
|
|||
2011-06-01 Marcus Brinkmann <mb@g10code.com>
|
||||
|
||||
* cvt-openpgp.c (convert_to_openpgp): Change type of N to unsigned
|
||||
int.
|
||||
|
||||
2011-04-26 Werner Koch <wk@g10code.com>
|
||||
|
||||
* cvt-openpgp.c (convert_to_openpgp): Use rfc4880 encoded S2K count.
|
||||
|
|
|
@ -1062,7 +1062,7 @@ convert_to_openpgp (ctrl_t ctrl, gcry_sexp_t s_key, const char *passphrase,
|
|||
void *format_args_buf_ptr[1];
|
||||
int format_args_buf_int[1];
|
||||
void *format_args[10+2];
|
||||
size_t n;
|
||||
unsigned int n;
|
||||
gcry_sexp_t tmpkey, tmpsexp = NULL;
|
||||
|
||||
snprintf (countbuf, sizeof countbuf, "%lu", s2k_count);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue