diff --git a/NEWS b/NEWS index bee653bbe..91d38779f 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,25 @@ Noteworthy changes in version 2.5.6 (unreleased) ------------------------------------------------ + * gpg: Add a flag to the filter expressions for left anchored + substring match. [rGc12b7d047e] + + * gpg: Fix double free of internal data. [T7547] + + * gpgsm: Extend --learn-card by an optional s/n argument. [T7379] + + * gpgsm: Skip expired certificates when selection a certificate by + subject. [rG4cf83273e8] + + * scd: Fix posssible lockup on Windows due to a lost select + result. [rGa7ec3792c5] + + * card: New command "ll" as alias for "list --cards". [rGd6ee7adebe] + + * gpgconf: Fix reload and kill of keyboxd. [T7569] + + Release-info: https://dev.gnupg.org/T7586 + Noteworthy changes in version 2.5.5 (2025-03-07) ------------------------------------------------ diff --git a/g10/keygen.c b/g10/keygen.c index 2f1541d46..01ddb2e9b 100644 --- a/g10/keygen.c +++ b/g10/keygen.c @@ -448,6 +448,7 @@ set_one_pref (int val, int type, const char *item, byte *buf, int *nbuf) * "pref" (something like: "S10 S3 H3 H2 Z2 Z1") or the actual * cipher/hash/compress names. Use NULL to set the default * preferences. Returns: 0 = okay + * PERSONAL is either 0 or one PREFTYPE_* */ int keygen_set_std_prefs (const char *string,int personal)