diff options
author | Marcus Brinkmann <[email protected]> | 2010-06-09 13:23:30 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2010-06-09 13:23:30 +0000 |
commit | 13774269c0710d72732cc91af887a6f9d89ec40e (patch) | |
tree | 69c46480e94c75809a4373002d2541ee0dce1402 /src/ChangeLog | |
parent | 2010-06-09 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-13774269c0710d72732cc91af887a6f9d89ec40e.tar.gz gpgme-13774269c0710d72732cc91af887a6f9d89ec40e.zip |
2010-06-09 Marcus Brinkmann <[email protected]>
* gpgme-tool.c (result_add_timestamp): Add missing NULL argument.
(result_sign_to_xml): Protect against NULL fingerprint.
(struct server): New members input_fd, input_filename,
input_stream output_fd, output_filename, output_stream,
message_filename, message_stream.
(server_reset_fds): Deallocate those.
(server_parse_fd): New function.
(server_data_obj): Take optional filename argument and direction
argument. Also take new argument to return a filestream that
needs to be closed after destroying the data object.
Change all callers, too.
(input_notify, output_notify): Removed.
(cmd_input, cmd_output): New functions.
(gpgme_server): Do not register input and output notifier.
(register_commands): Use cmd_input and cmd_output.
(cmd_message): Rewritten to use server_parse_fd.
(cmd_delete, cmd_keylist): Fix inverted option check.
(main) [HAVE_W32CE_SYSTEM]: Sleep a bit to work around bug in ssh.
Diffstat (limited to '')
-rw-r--r-- | src/ChangeLog | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 0843a939..27fcd7c3 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,24 @@ 2010-06-09 Marcus Brinkmann <[email protected]> + * gpgme-tool.c (result_add_timestamp): Add missing NULL argument. + (result_sign_to_xml): Protect against NULL fingerprint. + (struct server): New members input_fd, input_filename, + input_stream output_fd, output_filename, output_stream, + message_filename, message_stream. + (server_reset_fds): Deallocate those. + (server_parse_fd): New function. + (server_data_obj): Take optional filename argument and direction + argument. Also take new argument to return a filestream that + needs to be closed after destroying the data object. + Change all callers, too. + (input_notify, output_notify): Removed. + (cmd_input, cmd_output): New functions. + (gpgme_server): Do not register input and output notifier. + (register_commands): Use cmd_input and cmd_output. + (cmd_message): Rewritten to use server_parse_fd. + (cmd_delete, cmd_keylist): Fix inverted option check. + (main) [HAVE_W32CE_SYSTEM]: Sleep a bit to work around bug in ssh. + * genkey.c (gpgme_op_genkey): Return err with TRACE_ERR. 2010-05-12 Marcus Brinkmann <[email protected]> |