diff options
author | Simon Josefsson <simon@josefsson.org> | 2005-08-30 09:18:32 +0000 |
---|---|---|
committer | Simon Josefsson <simon@josefsson.org> | 2005-08-30 09:18:32 +0000 |
commit | b76b7472a306c795dbd6a7bd64b636b1311bbfc7 (patch) | |
tree | d9ed0b8165722f9a44adaa3e0c646b7930398f8c | |
parent | 0046b267fdc89501f25f2b535e913b22fc820b3a (diff) | |
download | gnutls-b76b7472a306c795dbd6a7bd64b636b1311bbfc7.tar.gz |
Prototype error().
-rw-r--r-- | src/crypt.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/crypt.c b/src/crypt.c index 1fb8943fcc..cd26fcc6d1 100644 --- a/src/crypt.c +++ b/src/crypt.c @@ -62,6 +62,8 @@ void srptool_version(void) /* Gnulib portability files. */ #include <getpass.h> +#include <error.h> +const char *program_name = "srptool"; #define _MAX(x,y) (x>y?x:y) |