diff options
Diffstat (limited to 'g10/photoid.c')
-rw-r--r-- | g10/photoid.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/g10/photoid.c b/g10/photoid.c index c3d2745a8..3728cd076 100644 --- a/g10/photoid.c +++ b/g10/photoid.c @@ -114,7 +114,7 @@ generate_photo_id(PKT_public_key *pk,const char *photo_name) } if(!file) { - log_error(_("unable to open JPEG file `%s': %s\n"), + log_error(_("unable to open JPEG file '%s': %s\n"), filename,strerror(errno)); xfree(filename); filename=NULL; @@ -143,7 +143,7 @@ generate_photo_id(PKT_public_key *pk,const char *photo_name) /* Is it a JPEG? */ if(photo[0]!=0xFF || photo[1]!=0xD8) { - log_error(_("`%s' is not a JPEG file\n"),filename); + log_error(_("'%s' is not a JPEG file\n"),filename); xfree(photo); photo=NULL; xfree(filename); |