diff options
author | Werner Koch <[email protected]> | 2004-10-22 16:03:04 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2004-10-22 16:03:04 +0000 |
commit | 17c2c406016e51a6ecce5bd139d0c8e81ee07ec8 (patch) | |
tree | 153d15f62ec45ae4d304098ed9a98aff50deaafd /g10/g10.c | |
parent | Cleaned up (diff) | |
download | gnupg-17c2c406016e51a6ecce5bd139d0c8e81ee07ec8.tar.gz gnupg-17c2c406016e51a6ecce5bd139d0c8e81ee07ec8.zip |
Compile fixes.
Diffstat (limited to 'g10/g10.c')
-rw-r--r-- | g10/g10.c | 8 |
1 files changed, 6 insertions, 2 deletions
@@ -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; |