1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-20 01:02:44 +02:00

See ChangeLog: Tue May 30 16:37:55 CEST 2000 Werner Koch

This commit is contained in:
Werner Koch 2000-05-30 14:27:52 +00:00
parent ef5ab5bd87
commit 0764b4725e
21 changed files with 3715 additions and 3338 deletions

View File

@ -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>
* acinclude.m4 (GNUPG_SYS_NM_PARSE): Added BSDI support.

6
NEWS
View File

@ -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.
@ -19,7 +19,7 @@ Noteworthy changes in the current test release
* Some fixes for the W32 version.
* 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
and 8 times for 4k keys.

13
NOTES
View File

@ -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
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
View File

@ -7,8 +7,6 @@
* Fix localtime() in W32.
* INFO Kommand um z.B. default-recipients herauszufinden.
* export sollte exit(1) machen bei einem Fehler - testen! Es wird ein
leerer File erzeugt. Nur unter Windows?

View File

@ -1 +1 @@
1.0.1f
1.0.1-ePit-1

466
po/de.po

File diff suppressed because it is too large Load Diff

453
po/eo.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

1540
po/fr.po

File diff suppressed because it is too large Load Diff

453
po/id.po

File diff suppressed because it is too large Load Diff

453
po/it.po

File diff suppressed because it is too large Load Diff

453
po/ja.po

File diff suppressed because it is too large Load Diff

453
po/nl.po

File diff suppressed because it is too large Load Diff

453
po/pl.po

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

459
po/ru.po

File diff suppressed because it is too large Load Diff

453
po/sv.po

File diff suppressed because it is too large Load Diff

View File

@ -20,7 +20,6 @@ fi
rm * || true
ln ../g10/gpg gpg.exe
i386--mingw32-strip gpg.exe
ln ../../winseed/bin/entropy.dll entropy.dll
man -T latin1 -l ../doc/gpg.1 >gpg.man
todos gpg.man
ln ${srcdir}/README .

View File

@ -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>
* dotlock.c (disable_dotlock): New. Implmented this in the module.

View File

@ -500,12 +500,21 @@ iobuf_cancel( IOBUF a )
{
const char *s;
IOBUF a2;
int rc;
#ifdef HAVE_DOSISH_SYSTEM
char *remove_name = NULL;
#endif
if( a && a->use == 2 ) {
s = iobuf_get_real_fname(a);
if( s && *s )
remove(s); /* remove the file. Fixme: this will fail for MSDOZE*/
} /* because the file is still open */
if( s && *s ) {
#ifdef HAVE_DOSISH_SYSTEM
remove_name = m_strdup ( s );
#else
remove(s);
#endif
}
}
/* send a cancel message to all filters */
for( a2 = a; a2 ; a2 = a2->chain ) {
@ -515,7 +524,16 @@ iobuf_cancel( IOBUF a )
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;
}