2009-05-05 Marcus Brinkmann <marcus@g10code.de>
* gpgme.texi (Engine Information): Replace path by file_name.
This commit is contained in:
parent
065a0a3f6d
commit
6e27621062
@ -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
|
||||
|
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user