aboutsummaryrefslogtreecommitdiffstats
path: root/g10/g10.c
diff options
context:
space:
mode:
authorWerner Koch <[email protected]>2004-10-22 16:03:04 +0000
committerWerner Koch <[email protected]>2004-10-22 16:03:04 +0000
commit17c2c406016e51a6ecce5bd139d0c8e81ee07ec8 (patch)
tree153d15f62ec45ae4d304098ed9a98aff50deaafd /g10/g10.c
parentCleaned up (diff)
downloadgnupg-17c2c406016e51a6ecce5bd139d0c8e81ee07ec8.tar.gz
gnupg-17c2c406016e51a6ecce5bd139d0c8e81ee07ec8.zip
Compile fixes.
Diffstat (limited to 'g10/g10.c')
-rw-r--r--g10/g10.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/g10/g10.c b/g10/g10.c
index 915011026..039074f6b 100644
--- a/g10/g10.c
+++ b/g10/g10.c
@@ -2038,6 +2038,10 @@ main( int argc, char **argv )
}
#endif
+ log_info ("WARNING: This version of gpg is not very matured and\n");
+ log_info ("WARNING: only intended for testing. Please keep using\n");
+ log_info ("WARNING: gpg 1.2.x, 1.3.x or 1.4.x for OpenPGP\n");
+
/* FIXME: We should use the lggging to a file only in server mode;
however we have not yet implemetyed that thus we try to get
away with --batch as indication for logging to file required. */
@@ -2926,9 +2930,9 @@ main( int argc, char **argv )
case aChangePIN:
if (!argc)
- change_pin (0);
+ change_pin (0,1);
else if (argc == 1)
- change_pin ( atoi (*argv));
+ change_pin ( atoi (*argv), 1);
else
wrong_args ("--change-pin [no]");
break;