aboutsummaryrefslogtreecommitdiffstats
path: root/g10/dearmor.c
diff options
context:
space:
mode:
authorJustus Winter <[email protected]>2016-04-06 09:34:11 +0000
committerJustus Winter <[email protected]>2016-04-06 09:34:11 +0000
commit76ca869197e304daa5a8dd96ea43113ec7b28354 (patch)
tree3f49b07a76ca4a05d54837da3bdcc84cee375a34 /g10/dearmor.c
parentdirmngr: Autodetect PEM format in dirmngr-client. (diff)
downloadgnupg-76ca869197e304daa5a8dd96ea43113ec7b28354.tar.gz
gnupg-76ca869197e304daa5a8dd96ea43113ec7b28354.zip
Revert "g10: Support armored keyrings in gpgv."
This reverts commit abb352de51bc964c06007fce43ed6f6caea87c15.
Diffstat (limited to 'g10/dearmor.c')
-rw-r--r--g10/dearmor.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/g10/dearmor.c b/g10/dearmor.c
index 3f1976f96..3fdd57dae 100644
--- a/g10/dearmor.c
+++ b/g10/dearmor.c
@@ -35,11 +35,10 @@
#include "i18n.h"
/****************
- * Take an armor file and write it out without armor. If outfd is not
- * -1, the output will be written to the given file descriptor.
+ * Take an armor file and write it out without armor
*/
int
-dearmor_file( const char *fname, int outfd )
+dearmor_file( const char *fname )
{
armor_filter_context_t *afx;
IOBUF inp = NULL, out = NULL;
@@ -65,7 +64,7 @@ dearmor_file( const char *fname, int outfd )
push_armor_filter ( afx, inp );
- if( (rc = open_outfile (outfd, fname, 0, 0, &out)) )
+ if( (rc = open_outfile (-1, fname, 0, 0, &out)) )
goto leave;
while( (c = iobuf_get(inp)) != -1 )