diff options
author | Werner Koch <wk@gnupg.org> | 2010-10-01 22:33:53 +0200 |
---|---|---|
committer | Werner Koch <wk@gnupg.org> | 2010-10-01 22:33:53 +0200 |
commit | bfbd80feb95fba36292cd9dab43016f17b1e6972 (patch) | |
tree | 9afbfd29e8aeb78fa34a1a49d8b8071554d4f593 /g10/compress.c | |
parent | * options.skel: Make the example for force-v3-sigs match reality (it (diff) | |
download | gnupg2-bfbd80feb95fba36292cd9dab43016f17b1e6972.tar.xz gnupg2-bfbd80feb95fba36292cd9dab43016f17b1e6972.zip |
Exporting secret keys via gpg-agent is now basically supported.
A couple of forward ported changes.
Doc updates.
Diffstat (limited to 'g10/compress.c')
-rw-r--r-- | g10/compress.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/compress.c b/g10/compress.c index db9fedb64..5dd3591df 100644 --- a/g10/compress.c +++ b/g10/compress.c @@ -300,7 +300,7 @@ release_context (compress_filter_context_t *ctx) * Handle a compressed packet */ int -handle_compressed( void *procctx, PKT_compressed *cd, +handle_compressed (ctrl_t ctrl, void *procctx, PKT_compressed *cd, int (*callback)(IOBUF, void *), void *passthru ) { compress_filter_context_t *cfx; @@ -315,7 +315,7 @@ handle_compressed( void *procctx, PKT_compressed *cd, if( callback ) rc = callback(cd->buf, passthru ); else - rc = proc_packets(procctx, cd->buf); + rc = proc_packets (ctrl,procctx, cd->buf); cd->buf = NULL; return rc; } |