aboutsummaryrefslogtreecommitdiffstats
path: root/g10/openfile.c
diff options
context:
space:
mode:
Diffstat (limited to 'g10/openfile.c')
-rw-r--r--g10/openfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/openfile.c b/g10/openfile.c
index c106cdbec..a6383a44a 100644
--- a/g10/openfile.c
+++ b/g10/openfile.c
@@ -345,7 +345,7 @@ copy_options_file( const char *destdir )
errno = EPERM;
}
if( !src ) {
- log_error(_("can't open `%s': %s\n"), fname, strerror(errno) );
+ log_info (_("can't open `%s': %s\n"), fname, strerror(errno) );
xfree(fname);
return;
}
@@ -360,7 +360,7 @@ copy_options_file( const char *destdir )
dst = fopen( fname, "w" );
umask(oldmask);
if( !dst ) {
- log_error(_("can't create `%s': %s\n"), fname, strerror(errno) );
+ log_info (_("can't create `%s': %s\n"), fname, strerror(errno) );
fclose( src );
xfree(fname);
return;