diff options
Diffstat (limited to 'sm')
-rw-r--r-- | sm/ChangeLog | 4 | ||||
-rw-r--r-- | sm/call-agent.c | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/sm/ChangeLog b/sm/ChangeLog index 654b4e93c..e9b8bfad4 100644 --- a/sm/ChangeLog +++ b/sm/ChangeLog @@ -1,3 +1,7 @@ +2001-12-19 Marcus Brinkmann <[email protected]> + + * call-agent.c (start_agent): Add new argument to assuan_pipe_connect. + 2001-12-18 Werner Koch <[email protected]> * verify.c (print_integer_sexp): Renamed from print_integer and diff --git a/sm/call-agent.c b/sm/call-agent.c index 6952e22f7..bbabe8352 100644 --- a/sm/call-agent.c +++ b/sm/call-agent.c @@ -163,7 +163,7 @@ start_agent (void) argv[2] = NULL; /* connect to the agent and perform initial handshaking */ - rc = assuan_pipe_connect (&ctx, opt.agent_program, (char**)argv); + rc = assuan_pipe_connect (&ctx, opt.agent_program, (char**)argv, 0); if (rc) { log_error ("can't connect to the agent: %s\n", assuan_strerror (rc)); |