mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-08 12:44:23 +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)
|
Noteworthy changes in version 2.0.25 (2014-06-30)
|
||||||
-------------------------------------------------
|
-------------------------------------------------
|
||||||
|
|
||||||
|
@ -34,6 +34,11 @@
|
|||||||
#include "keydb.h"
|
#include "keydb.h"
|
||||||
#include "i18n.h"
|
#include "i18n.h"
|
||||||
|
|
||||||
|
#ifdef MKDIR_TAKES_ONE_ARG
|
||||||
|
#undef mkdir
|
||||||
|
#define mkdir(a,b) mkdir(a)
|
||||||
|
#endif
|
||||||
|
|
||||||
static int active_handles;
|
static int active_handles;
|
||||||
|
|
||||||
typedef enum {
|
typedef enum {
|
||||||
@ -245,7 +250,6 @@ keydb_add_resource (const char *url, int force, int secret, int *auto_created)
|
|||||||
const char *resname = url;
|
const char *resname = url;
|
||||||
char *filename = NULL;
|
char *filename = NULL;
|
||||||
int rc = 0;
|
int rc = 0;
|
||||||
FILE *fp;
|
|
||||||
KeydbResourceType rt = KEYDB_RESOURCE_TYPE_NONE;
|
KeydbResourceType rt = KEYDB_RESOURCE_TYPE_NONE;
|
||||||
|
|
||||||
if (auto_created)
|
if (auto_created)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user