mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-17 15:44:34 +02:00
See ChangeLog: Tue May 30 16:37:55 CEST 2000 Werner Koch
This commit is contained in:
parent
ef5ab5bd87
commit
0764b4725e
@ -1,3 +1,7 @@
|
|||||||
|
Tue May 30 16:37:55 CEST 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
|
Version 1.0.1-ePit-1
|
||||||
|
|
||||||
Sun May 28 13:55:17 CEST 2000 Werner Koch <wk@openit.de>
|
Sun May 28 13:55:17 CEST 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
* acinclude.m4 (GNUPG_SYS_NM_PARSE): Added BSDI support.
|
* acinclude.m4 (GNUPG_SYS_NM_PARSE): Added BSDI support.
|
||||||
|
6
NEWS
6
NEWS
@ -1,5 +1,5 @@
|
|||||||
Noteworthy changes in the current test release
|
Noteworthy changes in version 1.0.1-ePit-1
|
||||||
----------------------------------------------
|
------------------------------------------
|
||||||
|
|
||||||
* Fixed expiration handling of encryption keys.
|
* Fixed expiration handling of encryption keys.
|
||||||
|
|
||||||
@ -19,7 +19,7 @@ Noteworthy changes in the current test release
|
|||||||
* Some fixes for the W32 version.
|
* Some fixes for the W32 version.
|
||||||
|
|
||||||
* The entropy.dll is not anymore used by the W32 version but replaced
|
* The entropy.dll is not anymore used by the W32 version but replaced
|
||||||
by some code derived from Cryptlib.
|
by code derived from Cryptlib.
|
||||||
|
|
||||||
* Encryption is now much faster: About 2 times for 1k bit keys
|
* Encryption is now much faster: About 2 times for 1k bit keys
|
||||||
and 8 times for 4k keys.
|
and 8 times for 4k keys.
|
||||||
|
13
NOTES
13
NOTES
@ -17,3 +17,16 @@ gpg 1.0.1 okay with MP-RAS 3.02.01 Edition 5 using gcc 2.95.2 and EGD
|
|||||||
|
|
||||||
gpg 1.0.1 okay with 4.0.1 BSDI BSD/OS 4.0 i386
|
gpg 1.0.1 okay with 4.0.1 BSDI BSD/OS 4.0 i386
|
||||||
|
|
||||||
|
|
||||||
|
rndw32 tested on:
|
||||||
|
|
||||||
|
Windows 98 4.10.1998 mit einem AMD-K6-2-450
|
||||||
|
Michael Engels <angel@dalrin.de>)
|
||||||
|
|
||||||
|
Windows 95 4.00.950a
|
||||||
|
|
||||||
|
Windows NT 4.00.1381
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
2
TODO
2
TODO
@ -7,8 +7,6 @@
|
|||||||
|
|
||||||
* Fix localtime() in W32.
|
* Fix localtime() in W32.
|
||||||
|
|
||||||
* INFO Kommand um z.B. default-recipients herauszufinden.
|
|
||||||
|
|
||||||
* export sollte exit(1) machen bei einem Fehler - testen! Es wird ein
|
* export sollte exit(1) machen bei einem Fehler - testen! Es wird ein
|
||||||
leerer File erzeugt. Nur unter Windows?
|
leerer File erzeugt. Nur unter Windows?
|
||||||
|
|
||||||
|
453
po/es_ES.po
453
po/es_ES.po
File diff suppressed because it is too large
Load Diff
453
po/pt_BR.po
453
po/pt_BR.po
File diff suppressed because it is too large
Load Diff
453
po/pt_PT.po
453
po/pt_PT.po
File diff suppressed because it is too large
Load Diff
@ -20,7 +20,6 @@ fi
|
|||||||
rm * || true
|
rm * || true
|
||||||
ln ../g10/gpg gpg.exe
|
ln ../g10/gpg gpg.exe
|
||||||
i386--mingw32-strip gpg.exe
|
i386--mingw32-strip gpg.exe
|
||||||
ln ../../winseed/bin/entropy.dll entropy.dll
|
|
||||||
man -T latin1 -l ../doc/gpg.1 >gpg.man
|
man -T latin1 -l ../doc/gpg.1 >gpg.man
|
||||||
todos gpg.man
|
todos gpg.man
|
||||||
ln ${srcdir}/README .
|
ln ${srcdir}/README .
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Tue May 30 16:37:55 CEST 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
|
* iobuf.c (iobuf_cancel): Fix for MSDOS.
|
||||||
|
|
||||||
Fri Apr 14 19:37:08 CEST 2000 Werner Koch <wk@openit.de>
|
Fri Apr 14 19:37:08 CEST 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
* dotlock.c (disable_dotlock): New. Implmented this in the module.
|
* dotlock.c (disable_dotlock): New. Implmented this in the module.
|
||||||
|
26
util/iobuf.c
26
util/iobuf.c
@ -500,12 +500,21 @@ iobuf_cancel( IOBUF a )
|
|||||||
{
|
{
|
||||||
const char *s;
|
const char *s;
|
||||||
IOBUF a2;
|
IOBUF a2;
|
||||||
|
int rc;
|
||||||
|
#ifdef HAVE_DOSISH_SYSTEM
|
||||||
|
char *remove_name = NULL;
|
||||||
|
#endif
|
||||||
|
|
||||||
if( a && a->use == 2 ) {
|
if( a && a->use == 2 ) {
|
||||||
s = iobuf_get_real_fname(a);
|
s = iobuf_get_real_fname(a);
|
||||||
if( s && *s )
|
if( s && *s ) {
|
||||||
remove(s); /* remove the file. Fixme: this will fail for MSDOZE*/
|
#ifdef HAVE_DOSISH_SYSTEM
|
||||||
} /* because the file is still open */
|
remove_name = m_strdup ( s );
|
||||||
|
#else
|
||||||
|
remove(s);
|
||||||
|
#endif
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/* send a cancel message to all filters */
|
/* send a cancel message to all filters */
|
||||||
for( a2 = a; a2 ; a2 = a2->chain ) {
|
for( a2 = a; a2 ; a2 = a2->chain ) {
|
||||||
@ -515,7 +524,16 @@ iobuf_cancel( IOBUF a )
|
|||||||
NULL, &dummy );
|
NULL, &dummy );
|
||||||
}
|
}
|
||||||
|
|
||||||
return iobuf_close(a);
|
rc = iobuf_close(a);
|
||||||
|
#ifdef HAVE_DOSISH_SYSTEM
|
||||||
|
if ( remove_name ) {
|
||||||
|
/* Argg, MSDOS does not allow to remove open files. So
|
||||||
|
* we have to do it here */
|
||||||
|
remove ( remove_name );
|
||||||
|
m_free ( remove_name );
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
return rc;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user