diff options
author | Marcus Brinkmann <[email protected]> | 2017-08-01 17:08:16 +0000 |
---|---|---|
committer | Marcus Brinkmann <[email protected]> | 2017-08-01 17:08:16 +0000 |
commit | 624cd2d0bf6cc6dd1b79654295dc76f5b2d6d70b (patch) | |
tree | 83518734e83fca311035d07bcf9c084d5f734706 /g10/openfile.c | |
parent | g10: Always save standard revocation certificate in file. (diff) | |
download | gnupg-624cd2d0bf6cc6dd1b79654295dc76f5b2d6d70b.tar.gz gnupg-624cd2d0bf6cc6dd1b79654295dc76f5b2d6d70b.zip |
Revert "g10: Always save standard revocation certificate in file."
This reverts commit ebc65ff459e6c228fb7406e375819a9fe5637abe.
Diffstat (limited to 'g10/openfile.c')
-rw-r--r-- | g10/openfile.c | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/g10/openfile.c b/g10/openfile.c index 03b114d58..78f4dbbcb 100644 --- a/g10/openfile.c +++ b/g10/openfile.c @@ -174,15 +174,13 @@ ask_outfile_name( const char *name, size_t namelen ) * If INP_FD is not -1 the function simply creates an IOBUF for that * file descriptor and ignore INAME and MODE. Note that INP_FD won't * be closed if the returned IOBUF is closed. With RESTRICTEDPERM a - * file will be created with mode 700 if possible. If NO_OUTFILE is - * true, don't use the outfile option even if it is set. + * file will be created with mode 700 if possible. */ int open_outfile (int inp_fd, const char *iname, int mode, int restrictedperm, - iobuf_t *a, int no_outfile) + iobuf_t *a) { int rc = 0; - const char outfile = no_outfile ? NULL : opt.outfile; *a = NULL; if (inp_fd != -1) @@ -202,7 +200,7 @@ open_outfile (int inp_fd, const char *iname, int mode, int restrictedperm, log_info (_("writing to '%s'\n"), xname); } } - else if (iobuf_is_pipe_filename (iname) && !outfile) + else if (iobuf_is_pipe_filename (iname) && !opt.outfile) { *a = iobuf_create (NULL, 0); if ( !*a ) @@ -220,8 +218,8 @@ open_outfile (int inp_fd, const char *iname, int mode, int restrictedperm, if (opt.dry_run) name = NAME_OF_DEV_NULL; - else if (outfile) - name = outfile; + else if (opt.outfile) + name = opt.outfile; else { #ifdef USE_ONLY_8DOT3 |