mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-03 12:11:33 +01:00
* mkdtemp.c: Replaced byte by unsigned char because it is no longer
defined in gcrypt.h.
This commit is contained in:
parent
ad6abe7913
commit
3910c0f005
@ -1,3 +1,8 @@
|
|||||||
|
2002-05-22 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* mkdtemp.c: Replaced byte by unsigned char because it is no longer
|
||||||
|
defined in gcrypt.h.
|
||||||
|
|
||||||
2002-05-21 Werner Koch <wk@gnupg.org>
|
2002-05-21 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* maperror.c (map_gcry_err): Add libgcrypt's new S-expression errors.
|
* maperror.c (map_gcry_err): Add libgcrypt's new S-expression errors.
|
||||||
|
@ -38,7 +38,7 @@
|
|||||||
char *mkdtemp(char *template)
|
char *mkdtemp(char *template)
|
||||||
{
|
{
|
||||||
int attempts,idx,count=0;
|
int attempts,idx,count=0;
|
||||||
byte *ch;
|
unsigned char *ch;
|
||||||
|
|
||||||
idx=strlen(template);
|
idx=strlen(template);
|
||||||
|
|
||||||
@ -62,7 +62,7 @@ char *mkdtemp(char *template)
|
|||||||
{
|
{
|
||||||
int remaining=count;
|
int remaining=count;
|
||||||
char *marker=ch;
|
char *marker=ch;
|
||||||
byte *randombits;
|
unsigned char *randombits;
|
||||||
|
|
||||||
idx=0;
|
idx=0;
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user