[git] GnuPG - branch, master, updated. gnupg-2.1.0beta3-377-g36dfc37
by Werner Koch
cvs at cvs.gnupg.org
Tue Apr 8 10:02:01 CEST 2014
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 GNU Privacy Guard".
The branch, master has been updated
via 36dfc37e438660632d3a2bf5d5526be9005fa8c5 (commit)
from 5ff6d0c25e6d0f422b17809b954e9e87cb137347 (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 36dfc37e438660632d3a2bf5d5526be9005fa8c5
Author: Werner Koch <wk at gnupg.org>
Date: Tue Apr 8 10:01:36 2014 +0200
scd: Silent compiler warnings about unused variables.
* scd/app-openpgp.c (build_ecdsa_privkey_template): Mark unused arg.
(ecdh_writekey): Mark unused args.
Signed-off-by: Werner Koch <wk at gnupg.org>
diff --git a/scd/app-openpgp.c b/scd/app-openpgp.c
index da1bec9..b1599fb 100644
--- a/scd/app-openpgp.c
+++ b/scd/app-openpgp.c
@@ -2710,6 +2710,8 @@ build_ecdsa_privkey_template (app_t app, int keyno,
unsigned char *template;
size_t template_size;
+ (void)app;
+
*result = NULL;
*resultlen = 0;
@@ -3174,6 +3176,14 @@ ecdh_writekey (app_t app, gpg_error_t (*pincb)(void*, const char *, char **),
void *pincb_arg, int keyno,
const unsigned char *buf, size_t buflen, int depth)
{
+ (void)app;
+ (void)pincb;
+ (void)pincb_arg;
+ (void)keyno;
+ (void)buf;
+ (void)buflen;
+ (void)depth;
+
return GPG_ERR_NOT_IMPLEMENTED;
}
-----------------------------------------------------------------------
Summary of changes:
scd/app-openpgp.c | 10 ++++++++++
1 file changed, 10 insertions(+)
hooks/post-receive
--
The GNU Privacy Guard
http://git.gnupg.org
More information about the Gnupg-commits
mailing list