mirror of
git://git.gnupg.org/gnupg.git
synced 2025-02-03 16:53:03 +01:00
* encode.c (encode_symmetric): Do not use the new encryption code.
This commit is contained in:
parent
31d019f1c0
commit
096cfcc5c7
@ -1,3 +1,7 @@
|
|||||||
|
2002-07-01 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
|
* encode.c (encode_symmetric): Do not use the new encryption code.
|
||||||
|
|
||||||
2002-06-30 Werner Koch <wk@gnupg.org>
|
2002-06-30 Werner Koch <wk@gnupg.org>
|
||||||
|
|
||||||
* photoid.c: Use __MINGW32__ to include windows because
|
* photoid.c: Use __MINGW32__ to include windows because
|
||||||
|
@ -52,8 +52,14 @@ encode_symmetric( const char *filename )
|
|||||||
{
|
{
|
||||||
int compat = 1;
|
int compat = 1;
|
||||||
|
|
||||||
|
#if 0
|
||||||
|
/* We don't want to use it because older gnupg version can't
|
||||||
|
handle it and we can presume that a lot of scripts are running
|
||||||
|
with the expert mode set. Some time in the future we might
|
||||||
|
want to allow for it. */
|
||||||
if ( opt.expert )
|
if ( opt.expert )
|
||||||
compat = 0; /* PGP knows how to handle this mode. */
|
compat = 0; /* PGP knows how to handle this mode. */
|
||||||
|
#endif
|
||||||
return encode_simple( filename, 1, compat );
|
return encode_simple( filename, 1, compat );
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user