aboutsummaryrefslogtreecommitdiffstats
path: root/sm/gpgsm.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2007-03-19 15:44:59 +0000
committerWerner Koch <[email protected]>2007-03-19 15:44:59 +0000
commit9e95c2dff6374fea6007711635063d8c1ab4fb2b (patch)
tree257f186fed764c911913911ff35037a28ff11532 /sm/gpgsm.c
parentChanges to let the key listing use estream to help systems without (diff)
downloadgnupg-9e95c2dff6374fea6007711635063d8c1ab4fb2b.tar.gz
gnupg-9e95c2dff6374fea6007711635063d8c1ab4fb2b.zip
Allow export to work on systems without funopen/fopencookie.
Diffstat (limited to '')
-rw-r--r--sm/gpgsm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sm/gpgsm.c b/sm/gpgsm.c
index b71107a43..415a7cafa 100644
--- a/sm/gpgsm.c
+++ b/sm/gpgsm.c
@@ -1613,7 +1613,7 @@ main ( int argc, char **argv)
for (sl=NULL; argc; argc--, argv++)
add_to_strlist (&sl, *argv);
- gpgsm_export (&ctrl, sl, fp);
+ gpgsm_export (&ctrl, sl, fp, NULL);
free_strlist(sl);
if (fp != stdout)
fclose (fp);