aboutsummaryrefslogtreecommitdiffstats
path: root/tools/symcryptrun.c
diff options
context:
space:
mode:
Diffstat (limited to 'tools/symcryptrun.c')
-rw-r--r--tools/symcryptrun.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/symcryptrun.c b/tools/symcryptrun.c
index c5780fdf5..d1f953c9c 100644
--- a/tools/symcryptrun.c
+++ b/tools/symcryptrun.c
@@ -363,7 +363,7 @@ confucius_copy_file (char *infile, char *outfile, int plain)
}
else
{
- in = fopen (infile, "rb");
+ in = gnupg_fopen (infile, "rb");
if (!in)
{
log_error (_("could not open %s for writing: %s\n"),
@@ -380,7 +380,7 @@ confucius_copy_file (char *infile, char *outfile, int plain)
}
else
{
- out = fopen (outfile, "wb");
+ out = gnupg_fopen (outfile, "wb");
if (!out)
{
log_error (_("could not open %s for writing: %s\n"),
@@ -936,7 +936,7 @@ main (int argc, char **argv)
if (configname)
{
configlineno = 0;
- configfp = fopen (configname, "r");
+ configfp = gnupg_fopen (configname, "r");
if (!configfp)
{
if (!default_config)