mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
Adjust for assuan_register_command change.
This commit is contained in:
parent
717c38381a
commit
8e8368b00e
10 changed files with 39 additions and 6 deletions
|
@ -1,3 +1,8 @@
|
|||
2009-11-04 Werner Koch <wk@g10code.com>
|
||||
|
||||
* server.c (register_commands): Add NULL arg to
|
||||
assuan_register_command.
|
||||
|
||||
2009-11-02 Marcus Brinkmann <marcus@g10code.de>
|
||||
|
||||
* server.c (reset_notify, input_notify, output_notify): Update to
|
||||
|
|
|
@ -1132,7 +1132,7 @@ register_commands (assuan_context_t ctx)
|
|||
|
||||
for (i=0; table[i].name; i++)
|
||||
{
|
||||
rc = assuan_register_command (ctx, table[i].name, table[i].handler);
|
||||
rc = assuan_register_command (ctx, table[i].name, table[i].handler, NULL);
|
||||
if (rc)
|
||||
return rc;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue