mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
s/DOTLOCK/dotlock_t/.
Add some stuff for g13.
This commit is contained in:
parent
3974488cd1
commit
1d0e9816e4
18 changed files with 903 additions and 39 deletions
|
@ -1,3 +1,9 @@
|
|||
2009-09-23 Werner Koch <wk@g10code.com>
|
||||
|
||||
* command.c (register_commands) [HAVE_ASSUAN_SET_IO_MONITOR]:
|
||||
Remove cpp condition.
|
||||
(start_command_handler) [HAVE_ASSUAN_SET_IO_MONITOR]: Ditto.
|
||||
|
||||
2009-09-23 Marcus Brinkmann <marcus@g10code.de>
|
||||
|
||||
* gpg-agent.c (parse_rereadable_options): Don't set global assuan
|
||||
|
|
|
@ -1866,9 +1866,7 @@ register_commands (assuan_context_t ctx)
|
|||
if (rc)
|
||||
return rc;
|
||||
}
|
||||
#ifdef HAVE_ASSUAN_SET_IO_MONITOR
|
||||
assuan_register_post_cmd_notify (ctx, post_cmd_notify);
|
||||
#endif
|
||||
assuan_register_reset_notify (ctx, reset_notify);
|
||||
assuan_register_option_handler (ctx, option_handler);
|
||||
return 0;
|
||||
|
@ -1934,9 +1932,7 @@ start_command_handler (ctrl_t ctrl, gnupg_fd_t listen_fd, gnupg_fd_t fd)
|
|||
if (DBG_ASSUAN)
|
||||
assuan_set_log_stream (ctx, log_get_stream ());
|
||||
|
||||
#ifdef HAVE_ASSUAN_SET_IO_MONITOR
|
||||
assuan_set_io_monitor (ctx, io_monitor, NULL);
|
||||
#endif
|
||||
|
||||
for (;;)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue