aboutsummaryrefslogtreecommitdiffstats
path: root/agent/command.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2009-11-04 10:06:38 +0000
committerWerner Koch <[email protected]>2009-11-04 10:06:38 +0000
commit8e8368b00e020fed2dce98f3f3ce5c0a99d77b8c (patch)
tree6c07b32cfc25a28e6182393437383e6aad087a1d /agent/command.c
parentagent/ (diff)
downloadgnupg-8e8368b00e020fed2dce98f3f3ce5c0a99d77b8c.tar.gz
gnupg-8e8368b00e020fed2dce98f3f3ce5c0a99d77b8c.zip
Adjust for assuan_register_command change.
Diffstat (limited to 'agent/command.c')
-rw-r--r--agent/command.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/agent/command.c b/agent/command.c
index 17737ba8a..4b2d70248 100644
--- a/agent/command.c
+++ b/agent/command.c
@@ -1865,7 +1865,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;
}