[git] Pinentry - branch, master, updated. pinentry-1.0.0-28-g858bde1
by Marcus Brinkmann
cvs at cvs.gnupg.org
Wed Aug 23 15:49:09 CEST 2017
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "The standard pinentry collection".
The branch, master has been updated
via 858bde1fbbc5e14f2d6410da05869188bdc36ee3 (commit)
from 1590b664d88be8386a4664c2994b685187d1eb25 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 858bde1fbbc5e14f2d6410da05869188bdc36ee3
Author: Marcus Brinkmann <marcus.brinkmann at ruhr-uni-bochum.de>
Date: Wed Aug 23 15:46:17 2017 +0200
core: Supress compiler warnings.
* pinentry/password-cache.c (password_cache_save, password_cache_lookup,
password_cache_clear) [!HAVE_LIBSECRET]: Suppress unused parameter
warnings.
Signed-off-by: Marcus Brinkmann <mb at g10code.com>
diff --git a/pinentry/password-cache.c b/pinentry/password-cache.c
index 6778386..06c48b4 100644
--- a/pinentry/password-cache.c
+++ b/pinentry/password-cache.c
@@ -91,6 +91,8 @@ password_cache_save (const char *keygrip, const char *password)
free (label);
#else
+ (void) keygrip;
+ (void) password;
return;
#endif
}
@@ -135,6 +137,7 @@ password_cache_lookup (const char *keygrip, int *fatal_error)
return password2;
#else
+ (void) keygrip;
return NULL;
#endif
}
@@ -161,6 +164,7 @@ password_cache_clear (const char *keygrip)
return 1;
return 0;
#else
+ (void) keygrip;
return -1;
#endif
}
-----------------------------------------------------------------------
Summary of changes:
pinentry/password-cache.c | 4 ++++
1 file changed, 4 insertions(+)
hooks/post-receive
--
The standard pinentry collection
http://git.gnupg.org
More information about the Gnupg-commits
mailing list