summaryrefslogtreecommitdiffstats
path: root/common/miscellaneous.c
diff options
context:
space:
mode:
authorWerner Koch <wk@gnupg.org>2008-10-17 21:18:46 +0200
committerWerner Koch <wk@gnupg.org>2008-10-17 21:18:46 +0200
commit0698c5169fca5b7969e6b0fa4de22b693e7fd2e4 (patch)
treeebfa56dde985a7925e9dc6ea60bda96569106718 /common/miscellaneous.c
parentReset the context lock flag after a failed dirmngr start which may happend (diff)
downloadgnupg2-0698c5169fca5b7969e6b0fa4de22b693e7fd2e4.tar.xz
gnupg2-0698c5169fca5b7969e6b0fa4de22b693e7fd2e4.zip
Use more warning options with modern GCCs.
Other minor changes.
Diffstat (limited to 'common/miscellaneous.c')
-rw-r--r--common/miscellaneous.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/common/miscellaneous.c b/common/miscellaneous.c
index b7210ef2b..1c88068f1 100644
--- a/common/miscellaneous.c
+++ b/common/miscellaneous.c
@@ -31,6 +31,8 @@
static void
my_gcry_logger (void *dummy, int level, const char *fmt, va_list arg_ptr)
{
+ (void)dummy;
+
/* Map the log levels. */
switch (level)
{
@@ -51,6 +53,8 @@ my_gcry_logger (void *dummy, int level, const char *fmt, va_list arg_ptr)
static void
my_gcry_fatalerror_handler (void *opaque, int rc, const char *text)
{
+ (void)opaque;
+
log_fatal ("libgcrypt problem: %s\n", text ? text : gpg_strerror (rc));
abort ();
}
@@ -64,6 +68,8 @@ my_gcry_outofcore_handler (void *opaque, size_t req_n, unsigned int flags)
{
static int been_here; /* Used to protect against recursive calls. */
+ (void)opaque;
+
if (!been_here)
{
been_here = 1;
@@ -140,6 +146,8 @@ print_hexstring (FILE *fp, const void *buffer, size_t length, int reserved)
#define tohex(n) ((n) < 10 ? ((n) + '0') : (((n) - 10) + 'A'))
const unsigned char *s;
+ (void)reserved;
+
for (s = buffer; length; s++, length--)
{
putc ( tohex ((*s>>4)&15), fp);