diff options
Diffstat (limited to 'src/assuan-handler.c')
-rw-r--r-- | src/assuan-handler.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/assuan-handler.c b/src/assuan-handler.c index 5fdc3d4..4c02608 100644 --- a/src/assuan-handler.c +++ b/src/assuan-handler.c @@ -442,7 +442,7 @@ dispatch_command (assuan_context_t ctx, char *line, int linelen) handle_data_line, this may be wrong here. For example, if a user callback is invoked, and that callback is responsible for calling assuan_process_done, then this is wrong. */ - return PROCESS_DONE (handle_data_line (ctx, line+2, linelen-2)); + return PROCESS_DONE (ctx, handle_data_line (ctx, line+2, linelen-2)); for (p=line; *p && *p != ' ' && *p != '\t'; p++) ; |