mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
gpg: Rename a misnomed arg in open_outfile.
* g10/openfile.c (open_outfile): Rename inp_fd to out_fd. Signed-off-by: Werner Koch <wk@gnupg.org>
This commit is contained in:
parent
660eafa3a9
commit
303310d05e
2 changed files with 13 additions and 11 deletions
|
@ -171,32 +171,34 @@ ask_outfile_name( const char *name, size_t namelen )
|
|||
* 2 = use ".sig"
|
||||
* 3 = use ".rev"
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
* With RESTRICTEDPERM a file will be created with mode 700 if
|
||||
* possible.
|
||||
*
|
||||
* If OUT_FD is not -1 the function simply creates an IOBUF for that
|
||||
* file descriptor and ignores INAME and MODE. Note that OUT_FD won't
|
||||
* be closed if the returned IOBUF is closed. This is used for gpg's
|
||||
* --server mode. */
|
||||
int
|
||||
open_outfile (int inp_fd, const char *iname, int mode, int restrictedperm,
|
||||
open_outfile (int out_fd, const char *iname, int mode, int restrictedperm,
|
||||
iobuf_t *a)
|
||||
{
|
||||
int rc = 0;
|
||||
|
||||
*a = NULL;
|
||||
if (inp_fd != -1)
|
||||
if (out_fd != -1)
|
||||
{
|
||||
char xname[64];
|
||||
|
||||
*a = iobuf_fdopen_nc (inp_fd, "wb");
|
||||
*a = iobuf_fdopen_nc (out_fd, "wb");
|
||||
if (!*a)
|
||||
{
|
||||
rc = gpg_error_from_syserror ();
|
||||
snprintf (xname, sizeof xname, "[fd %d]", inp_fd);
|
||||
snprintf (xname, sizeof xname, "[fd %d]", out_fd);
|
||||
log_error (_("can't open '%s': %s\n"), xname, gpg_strerror (rc));
|
||||
}
|
||||
else if (opt.verbose)
|
||||
{
|
||||
snprintf (xname, sizeof xname, "[fd %d]", inp_fd);
|
||||
snprintf (xname, sizeof xname, "[fd %d]", out_fd);
|
||||
log_info (_("writing to '%s'\n"), xname);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue