diff options
author | Werner Koch <wk@gnupg.org> | 2007-07-10 11:24:29 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2007-07-10 11:24:29 +0200 |
commit | b188c246ca1b976eda56cd051d02e524490e9374 (patch) | |
tree | e5a2aaa6eae23564857146e041015457e38195c5 /common | |
parent | The Logos as designed by Thoams Wittek. (diff) | |
download | gnupg2-b188c246ca1b976eda56cd051d02e524490e9374.tar.xz gnupg2-b188c246ca1b976eda56cd051d02e524490e9374.zip |
Typo fixes.
iconv detection fix.
Use the currect type in t-gettime.
Diffstat (limited to 'common')
-rw-r--r-- | common/ChangeLog | 4 | ||||
-rw-r--r-- | common/t-gettime.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/common/ChangeLog b/common/ChangeLog index 63289215e..3d1f47160 100644 --- a/common/ChangeLog +++ b/common/ChangeLog @@ -1,3 +1,7 @@ +2007-07-09 Werner Koch <wk@g10code.com> + + * t-gettime.c (test_isotime2epoch): Use time_t and not u32. + 2007-07-05 Werner Koch <wk@g10code.com> * t-gettime.c: New. diff --git a/common/t-gettime.c b/common/t-gettime.c index 495de37bd..5cc78ff35 100644 --- a/common/t-gettime.c +++ b/common/t-gettime.c @@ -57,7 +57,7 @@ test_isotime2epoch (void) { NULL, 0 } }; int idx; - u32 val; + time_t val; gnupg_isotime_t tbuf; for (idx=0; array[idx].string; idx++) |