[git] GPA - branch, master, updated. gpa-0.9.3-16-g0ce64fe
by Werner Koch
cvs at cvs.gnupg.org
Wed May 1 12:24:52 CEST 2013
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 Assistant".
The branch, master has been updated
via 0ce64fe4c7e2c69a3f513dd97d1de004158d6b2b (commit)
via 5bfdbac82fa8244863a1db1bb6b94821c1b2a811 (commit)
from 2f3c235848c25dc3dbdd09b97c493c26990b69cc (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 0ce64fe4c7e2c69a3f513dd97d1de004158d6b2b
Author: Werner Koch <wk at gnupg.org>
Date: Wed May 1 11:54:19 2013 +0200
Release 0.9.4.
diff --git a/NEWS b/NEWS
index c458815..ba6e577 100644
--- a/NEWS
+++ b/NEWS
@@ -1,8 +1,12 @@
-Noteworthy changes in version 0.9.4 (unreleased)
+Noteworthy changes in version 0.9.4 (2013-05-01)
------------------------------------------------
* Added scrollbars to the verification result window.
+ * Improved searching in the key listing.
+
+ * Now uses the native theme under Windows.
+
Noteworthy changes in version 0.9.3 (2012-08-08)
------------------------------------------------
commit 5bfdbac82fa8244863a1db1bb6b94821c1b2a811
Author: Werner Koch <wk at gnupg.org>
Date: Wed May 1 11:49:37 2013 +0200
Replace defunct blackhole keyserver by the mayfirst keyserver.
* src/keyserver.c (keyserver_read_list): Update list.
--
Today I had no other option than to add the mayfirst keyserver.
Note that it has been said that the blackhole server of the German
research network has been shut down due to suits fearing that they
won't be able to delete keys from the server if demanded by courts.
diff --git a/src/keyserver.c b/src/keyserver.c
index 6b2a4ef..b6f68e2 100644
--- a/src/keyserver.c
+++ b/src/keyserver.c
@@ -107,7 +107,7 @@ read_list (const gchar *fname)
#else
fp = fopen (fname, "r");
#endif
- if (!fp)
+ if (!fp)
{
/*
fprintf (stderr, "can't open `%s': %s\n", fname, strerror (errno) );
@@ -116,21 +116,21 @@ read_list (const gchar *fname)
return -1;
}
- while ( fgets( line, DIM(line)-1, fp ) )
+ while ( fgets( line, DIM(line)-1, fp ) )
{
lnr++;
- if ( *line && line[strlen(line)-1] != '\n' )
+ if ( *line && line[strlen(line)-1] != '\n' )
{
err = "line too long";
break;
}
-
+
g_strstrip (line);
if( !*line || *line == '#' )
continue; /* comment or empty line */
- for( p=line; *p; p++ )
+ for( p=line; *p; p++ )
{
if (isspace (*p))
{
@@ -156,7 +156,7 @@ read_list (const gchar *fname)
release_server_list (list);
return -1;
}
-
+
return 0;
}
@@ -175,8 +175,8 @@ keyserver_read_list (const gchar *confname)
if (!serverlist)
{ /* no entries in list - use default values */
add_server (&serverlist, "hkp://keys.gnupg.net");
- add_server (&serverlist, "hkp://blackhole.pca.dfn.de");
- add_server (&serverlist, "hkp://minsky.surfnet.nl");
+ add_server (&serverlist, "hkp://zimmermann.mayfirst.org");
+ add_server (&serverlist, "hkp://minsky.surfnet.nl");
add_server (&serverlist, "hkp://pks.gpg.cz");
add_server (&serverlist, "hkp://pgp.cns.ualberta.ca");
add_server (&serverlist, "hkp://keyserver.ubuntu.com");
-----------------------------------------------------------------------
Summary of changes:
NEWS | 6 +++++-
src/keyserver.c | 16 ++++++++--------
2 files changed, 13 insertions(+), 9 deletions(-)
hooks/post-receive
--
The GNU Privacy Assistant
http://git.gnupg.org
More information about the Gnupg-commits
mailing list