2009-05-05 Marcus Brinkmann <marcus@g10code.de>

* gpgme.texi (Engine Information): Replace path by file_name.
This commit is contained in:
Marcus Brinkmann 2009-05-05 17:19:17 +00:00
parent 065a0a3f6d
commit 6e27621062
2 changed files with 8 additions and 4 deletions

View File

@ -1,3 +1,7 @@
2009-05-05 Marcus Brinkmann <marcus@g10code.de>
* gpgme.texi (Engine Information): Replace path by file_name.
2008-11-28 Werner Koch <wk@g10code.com>
* gpgme.texi (Listing Keys): Change description of the return

View File

@ -874,12 +874,12 @@ if (gpgme_err_code (err) == GPG_ERR_INV_ENGINE)
if (!info)
fprintf (stderr, "GPGME compiled without support for protocol %s",
gpgme_get_protocol_name (info->protocol));
else if (info->path && !info->version)
else if (info->file_name && !info->version)
fprintf (stderr, "Engine %s not installed properly",
info->path);
else if (info->path && info->version && info->req_version)
info->file_name);
else if (info->file_name && info->version && info->req_version)
fprintf (stderr, "Engine %s version %s installed, "
"but at least version %s required", info->path,
"but at least version %s required", info->file_name,
info->version, info->req_version);
else
fprintf (stderr, "Unknown problem with engine for protocol %s",