diff options
Diffstat (limited to 'scd')
-rw-r--r-- | scd/ChangeLog | 5 | ||||
-rw-r--r-- | scd/app-openpgp.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/scd/ChangeLog b/scd/ChangeLog index 63dfce719..a02ab4fdd 100644 --- a/scd/ChangeLog +++ b/scd/ChangeLog @@ -1,3 +1,8 @@ +2010-10-18 Werner Koch <[email protected]> + + * app-openpgp.c (parse_algorithm_attribute): Remove extra const in + definition of DESC. + 2010-08-16 Werner Koch <[email protected]> * scdaemon.c: Replace remaining printf by es_printf. diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c index d4685916e..029d99fb3 100644 --- a/scd/app-openpgp.c +++ b/scd/app-openpgp.c @@ -3596,7 +3596,7 @@ parse_algorithm_attribute (app_t app, int keyno) unsigned char *buffer; size_t buflen; void *relptr; - const char const desc[3][5] = {"sign", "encr", "auth"}; + const char desc[3][5] = {"sign", "encr", "auth"}; assert (keyno >=0 && keyno <= 2); |