diff options
author | Werner Koch <[email protected]> | 2002-01-26 13:41:48 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2002-01-26 13:41:48 +0000 |
commit | 8536088075f85d00db0b3a593f6fceb60bca1375 (patch) | |
tree | 9a86a06b946dc86466872d874890c02b6ef364c7 | |
parent | * scdaemon.c scdaemon.h, command.c: New. Based on the code from (diff) | |
download | gnupg-8536088075f85d00db0b3a593f6fceb60bca1375.tar.gz gnupg-8536088075f85d00db0b3a593f6fceb60bca1375.zip |
Updated copyright notices
-rw-r--r-- | agent/gpg-agent.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/agent/gpg-agent.c b/agent/gpg-agent.c index 0707e127e..d5176dd72 100644 --- a/agent/gpg-agent.c +++ b/agent/gpg-agent.c @@ -1,5 +1,5 @@ /* gpg-agent.c - The GnuPG Agent - * Copyright (C) 2000, 2001 Free Software Foundation, Inc. + * Copyright (C) 2000, 2001, 2002 Free Software Foundation, Inc. * * This file is part of GnuPG. * @@ -243,10 +243,10 @@ main (int argc, char **argv ) /* check that the libraries are suitable. Do it here because the option parsing may need services of the library */ - if (!gcry_check_version ( "1.1.4" ) ) + if (!gcry_check_version ( "1.1.5" ) ) { log_fatal( _("libgcrypt is too old (need %s, have %s)\n"), - VERSION, gcry_check_version (NULL) ); + "1.1.5", gcry_check_version (NULL) ); } assuan_set_malloc_hooks (gcry_malloc, gcry_realloc, gcry_free); |