diff options
author | Marcus Brinkmann <[email protected]> | 2001-12-19 17:46:02 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2001-12-19 17:46:02 +0000 |
commit | a087259977a62d47505762a2086944a60cc1cc59 (patch) | |
tree | 6ab80c69a933445635ea4f9a2ad5ecb6ce5f960f | |
parent | Revert cruft from last check in. (diff) | |
download | gpgme-a087259977a62d47505762a2086944a60cc1cc59.tar.gz gpgme-a087259977a62d47505762a2086944a60cc1cc59.zip |
gpgme/
2001-12-19 Marcus Brinkmann <[email protected]>
* engine.c: Include `string.h'. Reported by St�phane Corth�sy.
* version.c (get_engine_info): Remove prototype.
tests/
2001-12-19 Marcus Brinkmann <[email protected]>
* gpg/t-decrypt-verify.c: Don't include `mcheck.h'. Reported by
St�phane Corth�sy.
-rw-r--r-- | gpgme/ChangeLog | 6 | ||||
-rw-r--r-- | gpgme/engine.c | 1 | ||||
-rw-r--r-- | tests/ChangeLog | 5 | ||||
-rw-r--r-- | tests/gpg/t-decrypt-verify.c | 1 |
4 files changed, 12 insertions, 1 deletions
diff --git a/gpgme/ChangeLog b/gpgme/ChangeLog index 9da7d708..ade6e9dd 100644 --- a/gpgme/ChangeLog +++ b/gpgme/ChangeLog @@ -1,5 +1,11 @@ 2001-12-19 Marcus Brinkmann <[email protected]> + * engine.c: Include `string.h'. Reported by St�phane Corth�sy. + + * version.c (get_engine_info): Remove prototype. + +2001-12-19 Marcus Brinkmann <[email protected]> + * engine-gpgsm.c (_gpgme_gpgsm_new): New variable CHILD_FDS. Fill it with the servers fds, and pass it to assuan_pipe_connect. diff --git a/gpgme/engine.c b/gpgme/engine.c index 5e0117b5..de17617d 100644 --- a/gpgme/engine.c +++ b/gpgme/engine.c @@ -24,6 +24,7 @@ #endif #include <time.h> #include <sys/types.h> +#include <string.h> #include <assert.h> #include "gpgme.h" diff --git a/tests/ChangeLog b/tests/ChangeLog index 7e7cea9b..78928213 100644 --- a/tests/ChangeLog +++ b/tests/ChangeLog @@ -1,5 +1,10 @@ 2001-12-19 Marcus Brinkmann <[email protected]> + * gpg/t-decrypt-verify.c: Don't include `mcheck.h'. Reported by + St�phane Corth�sy. + +2001-12-19 Marcus Brinkmann <[email protected]> + * gpg/Makefile.am (EXTRA_DIST): Add missing line continuation. 2001-12-19 Marcus Brinkmann <[email protected]> diff --git a/tests/gpg/t-decrypt-verify.c b/tests/gpg/t-decrypt-verify.c index c322f8d2..14a28a77 100644 --- a/tests/gpg/t-decrypt-verify.c +++ b/tests/gpg/t-decrypt-verify.c @@ -24,7 +24,6 @@ #include <string.h> #include <assert.h> #include <errno.h> -#include <mcheck.h> #include <gpgme.h> |