mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-22 10:19:57 +01:00
Release 2.0.26
This commit is contained in:
parent
9f3619cb5d
commit
5b2dcdd513
13
NEWS
13
NEWS
@ -1,6 +1,17 @@
|
||||
Noteworthy changes in version 2.0.26 (unreleased)
|
||||
Noteworthy changes in version 2.0.26 (2014-08-12)
|
||||
-------------------------------------------------
|
||||
|
||||
* gpg: Fix a regression in 2.0.24 if a subkey id is given
|
||||
to --recv-keys et al.
|
||||
|
||||
* gpg: Cap attribute packets at 16MB.
|
||||
|
||||
* gpgsm: Auto-create the ".gnupg" home directory in the same
|
||||
way gpg does.
|
||||
|
||||
* scdaemon: Allow for certificates > 1024 when using PC/SC.
|
||||
|
||||
|
||||
Noteworthy changes in version 2.0.25 (2014-06-30)
|
||||
-------------------------------------------------
|
||||
|
||||
|
@ -34,6 +34,11 @@
|
||||
#include "keydb.h"
|
||||
#include "i18n.h"
|
||||
|
||||
#ifdef MKDIR_TAKES_ONE_ARG
|
||||
#undef mkdir
|
||||
#define mkdir(a,b) mkdir(a)
|
||||
#endif
|
||||
|
||||
static int active_handles;
|
||||
|
||||
typedef enum {
|
||||
@ -245,7 +250,6 @@ keydb_add_resource (const char *url, int force, int secret, int *auto_created)
|
||||
const char *resname = url;
|
||||
char *filename = NULL;
|
||||
int rc = 0;
|
||||
FILE *fp;
|
||||
KeydbResourceType rt = KEYDB_RESOURCE_TYPE_NONE;
|
||||
|
||||
if (auto_created)
|
||||
|
Loading…
x
Reference in New Issue
Block a user