diff options
author | David Shaw <[email protected]> | 2003-12-30 00:46:42 +0000 |
---|---|---|
committer | David Shaw <[email protected]> | 2003-12-30 00:46:42 +0000 |
commit | d537d547cef144014f46aa050b5e3b911c48cf93 (patch) | |
tree | 85f447f01b82038836c25b79e0a2546876b53556 /g10/misc.c | |
parent | * gpgkeys_hkp.c (send_key, get_key, main): Work with new HTTP code that (diff) | |
download | gnupg-d537d547cef144014f46aa050b5e3b911c48cf93.tar.gz gnupg-d537d547cef144014f46aa050b5e3b911c48cf93.zip |
* misc.c (pull_in_libs): Dead code. Removed.
* sig-check.c (check_revocation_keys): Comments.
* getkey.c (merge_selfsigs_main): Don't bother to check designated revoker
sigs if the key is already revoked.
* packet.h, getkey.c (merge_selfsigs_main): New "maybe_revoked" flag on
PKs. It is set when there is a revocation signature from a valid
revocation key, but the revocation key is not present to verify the
signature.
* pkclist.c (check_signatures_trust): Use it here to give a warning when
showing key trust.
* compress-bz2.c: Include stdio.h. Solaris 9 has a very old bzip2 library
and we can at least guarantee that it won't fail because of the lack of
stdio.h.
* tdbio.c: Fixed format string bugs related to the use of DB_NAME.
Reported by Florian Weimer.
Diffstat (limited to '')
-rw-r--r-- | g10/misc.c | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/g10/misc.c b/g10/misc.c index 229436cf5..1941b2c61 100644 --- a/g10/misc.c +++ b/g10/misc.c @@ -39,23 +39,6 @@ #include "options.h" #include "i18n.h" - -const char *g10m_revision_string(int); -const char *g10c_revision_string(int); -const char *g10u_revision_string(int); - -#ifdef __GNUC__ -volatile -#endif - void -pull_in_libs(void) -{ - g10m_revision_string(0); - g10c_revision_string(0); - g10u_revision_string(0); -} - - #if defined(__linux__) && defined(__alpha__) && __GLIBC__ < 2 static int setsysinfo(unsigned long op, void *buffer, unsigned long size, |