mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Exporting secret keys via gpg-agent is now basically supported.
A couple of forward ported changes. Doc updates.
This commit is contained in:
parent
aeb31977ec
commit
bfbd80feb9
72 changed files with 1930 additions and 546 deletions
|
@ -1,3 +1,17 @@
|
|||
2010-09-30 Werner Koch <wk@g10code.com>
|
||||
|
||||
* util.h (GPG_ERR_FULLY_CANCELED): Add replacement.
|
||||
|
||||
2010-09-17 Werner Koch <wk@g10code.com>
|
||||
|
||||
* http.c (INADDR_NONE): Provide fallback.
|
||||
* logging.c (INADDR_NONE): Ditto.
|
||||
|
||||
2010-09-16 Werner Koch <wk@g10code.com>
|
||||
|
||||
* util.h: Add GPG_ERR_MISSING_ISSUER_CERT.
|
||||
* status.c (get_inv_recpsgnr_code): Ditto.
|
||||
|
||||
2010-09-13 Werner Koch <wk@g10code.com>
|
||||
|
||||
* homedir.c (gnupg_bindir) [W32CE]: Change to bin/.
|
||||
|
|
|
@ -114,6 +114,9 @@ struct srventry
|
|||
#ifndef EAGAIN
|
||||
#define EAGAIN EWOULDBLOCK
|
||||
#endif
|
||||
#ifndef INADDR_NONE /* Slowaris is missing that. */
|
||||
#define INADDR_NONE ((unsigned long)(-1))
|
||||
#endif /*INADDR_NONE*/
|
||||
|
||||
#define HTTP_PROXY_ENV "http_proxy"
|
||||
#define MAX_LINELEN 20000 /* Max. length of a HTTP header line. */
|
||||
|
|
|
@ -68,6 +68,9 @@
|
|||
#ifndef EAFNOSUPPORT
|
||||
# define EAFNOSUPPORT EINVAL
|
||||
#endif
|
||||
#ifndef INADDR_NONE /* Slowaris is missing that. */
|
||||
#define INADDR_NONE ((unsigned long)(-1))
|
||||
#endif /*INADDR_NONE*/
|
||||
|
||||
#ifdef HAVE_W32_SYSTEM
|
||||
#define sock_close(a) closesocket(a)
|
||||
|
|
|
@ -82,7 +82,7 @@ sskip (unsigned char const **buf, int *depth)
|
|||
|
||||
/* Check whether the the string at the address BUF points to matches
|
||||
the token. Return true on match and update BUF to point behind the
|
||||
token. Return false and dont update tha buffer if it does not
|
||||
token. Return false and do not update the buffer if it does not
|
||||
match. */
|
||||
static inline int
|
||||
smatch (unsigned char const **buf, size_t buflen, const char *token)
|
||||
|
|
|
@ -58,6 +58,7 @@ get_inv_recpsgnr_code (gpg_error_t err)
|
|||
|
||||
case GPG_ERR_NOT_TRUSTED: errstr = "10"; break;
|
||||
case GPG_ERR_MISSING_CERT: errstr = "11"; break;
|
||||
case GPG_ERR_MISSING_ISSUER_CERT: errstr = "12"; break;
|
||||
default: errstr = "0"; break;
|
||||
}
|
||||
|
||||
|
|
|
@ -33,6 +33,12 @@
|
|||
#ifndef GPG_ERR_NOT_INITIALIZED
|
||||
#define GPG_ERR_NOT_INITIALIZED 184
|
||||
#endif
|
||||
#ifndef GPG_ERR_MISSING_ISSUER_CERT
|
||||
#define GPG_ERR_MISSING_ISSUER_CERT 185
|
||||
#endif
|
||||
#ifndef GPG_ERR_FULLY_CANCELED
|
||||
#define GPG_ERR_FULLY_CANCELED 198
|
||||
#endif
|
||||
|
||||
|
||||
/* Hash function used with libksba. */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue