Release 2.0.26

This commit is contained in:
Werner Koch 2014-08-12 10:36:30 +02:00
parent 9f3619cb5d
commit 5b2dcdd513
2 changed files with 17 additions and 2 deletions

13
NEWS
View File

@ -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)
-------------------------------------------------

View File

@ -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)