diff options
author | Werner Koch <[email protected]> | 2007-03-19 15:44:59 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2007-03-19 15:44:59 +0000 |
commit | 9e95c2dff6374fea6007711635063d8c1ab4fb2b (patch) | |
tree | 257f186fed764c911913911ff35037a28ff11532 /sm/encrypt.c | |
parent | Changes to let the key listing use estream to help systems without (diff) | |
download | gnupg-9e95c2dff6374fea6007711635063d8c1ab4fb2b.tar.gz gnupg-9e95c2dff6374fea6007711635063d8c1ab4fb2b.zip |
Allow export to work on systems without funopen/fopencookie.
Diffstat (limited to 'sm/encrypt.c')
-rw-r--r-- | sm/encrypt.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sm/encrypt.c b/sm/encrypt.c index 907fabc01..0969c082f 100644 --- a/sm/encrypt.c +++ b/sm/encrypt.c @@ -364,7 +364,7 @@ gpgsm_encrypt (ctrl_t ctrl, certlist_t recplist, int data_fd, FILE *out_fp) encparm.fp = data_fp; ctrl->pem_name = "ENCRYPTED MESSAGE"; - rc = gpgsm_create_writer (&b64writer, ctrl, out_fp, &writer); + rc = gpgsm_create_writer (&b64writer, ctrl, out_fp, NULL, &writer); if (rc) { log_error ("can't create writer: %s\n", gpg_strerror (rc)); |