1
0
Fork 0
mirror of git://git.gnupg.org/gnupg.git synced 2025-07-02 22:46:30 +02:00

Preparing a release candidate.

This commit is contained in:
Werner Koch 2007-12-14 16:08:53 +00:00
parent 78c2a34afe
commit a6549ca548
37 changed files with 28316 additions and 22460 deletions

View file

@ -1,3 +1,8 @@
2007-12-14 Werner Koch <wk@g10code.com>
* gpg.c (main): Set opt.no_homedir_creation during the first option
parsing pass.
2007-12-12 Werner Koch <wk@g10code.com>
* misc.c (print_pubkey_algo_note): Print a warning if a type 20

View file

@ -1905,8 +1905,11 @@ main (int argc, char **argv )
default_config = 0;
}
else if( pargs.r_opt == oNoOptions )
{
default_config = 0; /* --no-options */
else if( pargs.r_opt == oHomedir )
opt.no_homedir_creation = 1;
}
else if( pargs.r_opt == oHomedir )
set_homedir ( pargs.r.ret_str );
else if( pargs.r_opt == oNoPermissionWarn )
opt.no_perm_warn=1;