aboutsummaryrefslogtreecommitdiffstats
path: root/keyserver
diff options
context:
space:
mode:
Diffstat (limited to 'keyserver')
-rw-r--r--keyserver/ChangeLog8
-rw-r--r--keyserver/gpgkeys_hkp.c5
2 files changed, 8 insertions, 5 deletions
diff --git a/keyserver/ChangeLog b/keyserver/ChangeLog
index 87fb3b241..302138daa 100644
--- a/keyserver/ChangeLog
+++ b/keyserver/ChangeLog
@@ -1,3 +1,7 @@
+2011-08-09 Werner Koch <[email protected]>
+
+ * gpgkeys_hkp.c (srv_replace): Remove unused var.
+
2009-09-02 Werner Koch <[email protected]>
* Makefile.am (gpgkeys_curl_SOURCES, gpgkeys_ldap_SOURCES)
@@ -52,7 +56,7 @@
hostname to a real hostname.
(main): Call it from here for the HAVE_LIBCURL case (without
libcurl is handled via the curl-shim).
-
+
2009-04-02 David Shaw <[email protected]>
* curl-shim.h, curl-shim.c (curl_easy_setopt, curl_easy_perform):
@@ -669,7 +673,7 @@
2004-10-28 Werner Koch <[email protected]>
- * Makefile.am (other_libs):
+ * Makefile.am (other_libs):
2004-10-18 David Shaw <[email protected]>
diff --git a/keyserver/gpgkeys_hkp.c b/keyserver/gpgkeys_hkp.c
index a15cbf656..ae520fbaa 100644
--- a/keyserver/gpgkeys_hkp.c
+++ b/keyserver/gpgkeys_hkp.c
@@ -498,7 +498,6 @@ srv_replace(const char *srvtag)
{
#ifdef USE_DNS_SRV
struct srventry *srvlist=NULL;
- int srvcount;
if(!srvtag)
return;
@@ -511,7 +510,7 @@ srv_replace(const char *srvtag)
strcat(srvname,srvtag);
strcat(srvname,"._tcp.");
strcat(srvname,opt->host);
- srvcount=getsrv(srvname,&srvlist);
+ getsrv(srvname,&srvlist);
}
if(srvlist)
@@ -538,7 +537,7 @@ srv_replace(const char *srvtag)
}
#endif
-static void
+static void
show_help (FILE *fp)
{
fprintf (fp,"-h, --help\thelp\n");