mirror of
git://git.gnupg.org/gnupg.git
synced 2025-04-13 22:21:09 +02:00
See ChangeLog: Mon Apr 10 13:34:19 CEST 2000 Werner Koch
This commit is contained in:
parent
b988924b60
commit
c6cd141bc0
4
TODO
4
TODO
@ -9,6 +9,10 @@
|
|||||||
candidates for a keyblock first and the select one from it.
|
candidates for a keyblock first and the select one from it.
|
||||||
The current code is too ugly (getkey.c).
|
The current code is too ugly (getkey.c).
|
||||||
|
|
||||||
|
* Fix localtime() in W32.
|
||||||
|
|
||||||
|
* INFO Kommand um z.B. default-recipients herauszufinden.
|
||||||
|
|
||||||
Scheduled for 1.1
|
Scheduled for 1.1
|
||||||
-----------------
|
-----------------
|
||||||
* With option -i prompt before adding a key to the keyring and show some
|
* With option -i prompt before adding a key to the keyring and show some
|
||||||
|
@ -663,6 +663,9 @@ fi
|
|||||||
AC_SUBST(ZLIBS)
|
AC_SUBST(ZLIBS)
|
||||||
|
|
||||||
|
|
||||||
|
# Allow users to append something to the version string without
|
||||||
|
# flagging it as development version. The user version parts is
|
||||||
|
# considered everything after a dash.
|
||||||
changequote(,)dnl
|
changequote(,)dnl
|
||||||
tmp_pat='[a-zA-Z]'
|
tmp_pat='[a-zA-Z]'
|
||||||
changequote([,])dnl
|
changequote([,])dnl
|
||||||
|
@ -1,3 +1,7 @@
|
|||||||
|
Mon Apr 10 13:34:19 CEST 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
|
* keyedit.c (show_key_with_all_names): s/sbb/ssb/
|
||||||
|
|
||||||
Tue Mar 28 14:26:58 CEST 2000 Werner Koch <wk@openit.de>
|
Tue Mar 28 14:26:58 CEST 2000 Werner Koch <wk@openit.de>
|
||||||
|
|
||||||
* trustdb.c (verify_own_keys): Do not print warning about unprotected
|
* trustdb.c (verify_own_keys): Do not print warning about unprotected
|
||||||
|
@ -1099,7 +1099,7 @@ show_key_with_all_names( KBNODE keyblock, int only_marked,
|
|||||||
|| (with_subkeys && node->pkt->pkttype == PKT_SECRET_SUBKEY) ) {
|
|| (with_subkeys && node->pkt->pkttype == PKT_SECRET_SUBKEY) ) {
|
||||||
PKT_secret_key *sk = node->pkt->pkt.secret_key;
|
PKT_secret_key *sk = node->pkt->pkt.secret_key;
|
||||||
tty_printf("%s%c %4u%c/%08lX created: %s expires: %s\n",
|
tty_printf("%s%c %4u%c/%08lX created: %s expires: %s\n",
|
||||||
node->pkt->pkttype == PKT_SECRET_KEY? "sec":"sbb",
|
node->pkt->pkttype == PKT_SECRET_KEY? "sec":"ssb",
|
||||||
(node->flag & NODFLG_SELKEY)? '*':' ',
|
(node->flag & NODFLG_SELKEY)? '*':' ',
|
||||||
nbits_from_sk( sk ),
|
nbits_from_sk( sk ),
|
||||||
pubkey_letter( sk->pubkey_algo ),
|
pubkey_letter( sk->pubkey_algo ),
|
||||||
|
@ -10,6 +10,8 @@ if [ -f ../README ]; then
|
|||||||
srcdir=..
|
srcdir=..
|
||||||
elif [ -f ../../gnupg-stable/README ]; then
|
elif [ -f ../../gnupg-stable/README ]; then
|
||||||
srcdir=../../gnupg-stable
|
srcdir=../../gnupg-stable
|
||||||
|
elif [ -f ../../../gnupg-stable/README ]; then
|
||||||
|
srcdir=../../../gnupg-stable
|
||||||
else
|
else
|
||||||
echo "cannot figure out the source dir" >&2
|
echo "cannot figure out the source dir" >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
Loading…
x
Reference in New Issue
Block a user