diff options
author | Werner Koch <[email protected]> | 2002-05-22 06:23:22 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-05-22 06:23:22 +0000 |
commit | 3910c0f005523f69bf23cdcc8708a874f5c5004c (patch) | |
tree | 8bceca5afd25e5dde254d8186eeac2a22ab06812 /common/mkdtemp.c | |
parent | * keylist.c (list_internal_keys): Renamed from gpgsm_list_keys. (diff) | |
download | gnupg-3910c0f005523f69bf23cdcc8708a874f5c5004c.tar.gz gnupg-3910c0f005523f69bf23cdcc8708a874f5c5004c.zip |
* mkdtemp.c: Replaced byte by unsigned char because it is no longer
defined in gcrypt.h.
Diffstat (limited to 'common/mkdtemp.c')
-rw-r--r-- | common/mkdtemp.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/common/mkdtemp.c b/common/mkdtemp.c index 9b76f8957..5347b9cb4 100644 --- a/common/mkdtemp.c +++ b/common/mkdtemp.c @@ -38,7 +38,7 @@ char *mkdtemp(char *template) { int attempts,idx,count=0; - byte *ch; + unsigned char *ch; idx=strlen(template); @@ -62,7 +62,7 @@ char *mkdtemp(char *template) { int remaining=count; char *marker=ch; - byte *randombits; + unsigned char *randombits; idx=0; |