mirror of
git://git.gnupg.org/gnupg.git
synced 2025-07-02 22:46:30 +02:00
See ChangeLog: Sun Feb 28 19:11:00 CET 1999 Werner Koch
This commit is contained in:
parent
694099b9af
commit
0f5bb383b5
8 changed files with 39 additions and 16 deletions
|
@ -1,3 +1,15 @@
|
|||
Sun Feb 28 19:11:00 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* keygen.c (ask_user_id): Don't change the case of email addresses.
|
||||
(has_invalid_email_chars): Adjusted.
|
||||
|
||||
* keylist.c (list_one): Really list serect keys (Remi Guyomarch)
|
||||
|
||||
* keyedit.c (menu_select_uid): Add some braces to make egcs happy.
|
||||
(menu_select_key): Ditto.
|
||||
|
||||
* mainproc.c (do_proc_packets): List sym-enc packets (Remi Guyomarch)
|
||||
|
||||
Fri Feb 26 17:55:41 CET 1999 Werner Koch <wk@isil.d.shuttle.de>
|
||||
|
||||
* pkclist.c (build_pk_list): Return error if there are no recipients.
|
||||
|
|
|
@ -1337,11 +1337,12 @@ menu_select_uid( KBNODE keyblock, int idx )
|
|||
/* and toggle the new index */
|
||||
for( i=0, node = keyblock; node; node = node->next ) {
|
||||
if( node->pkt->pkttype == PKT_USER_ID ) {
|
||||
if( ++i == idx )
|
||||
if( ++i == idx ) {
|
||||
if( (node->flag & NODFLG_SELUID) )
|
||||
node->flag &= ~NODFLG_SELUID;
|
||||
else
|
||||
node->flag |= NODFLG_SELUID;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1384,11 +1385,12 @@ menu_select_key( KBNODE keyblock, int idx )
|
|||
for( i=0, node = keyblock; node; node = node->next ) {
|
||||
if( node->pkt->pkttype == PKT_PUBLIC_SUBKEY
|
||||
|| node->pkt->pkttype == PKT_SECRET_SUBKEY ) {
|
||||
if( ++i == idx )
|
||||
if( ++i == idx ) {
|
||||
if( (node->flag & NODFLG_SELKEY) )
|
||||
node->flag &= ~NODFLG_SELKEY;
|
||||
else
|
||||
node->flag |= NODFLG_SELKEY;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
10
g10/keygen.c
10
g10/keygen.c
|
@ -555,17 +555,18 @@ static int
|
|||
has_invalid_email_chars( const char *s )
|
||||
{
|
||||
int at_seen=0;
|
||||
static char valid_chars[] = "01234567890_-."
|
||||
"abcdefghijklmnopqrstuvwxyz"
|
||||
"ABCDEFGHIJKLMNOPQRSTUVWXYZ";
|
||||
|
||||
for( ; *s; s++ ) {
|
||||
if( *s & 0x80 )
|
||||
return 1;
|
||||
if( *s == '@' )
|
||||
at_seen=1;
|
||||
else if( !at_seen
|
||||
&& !strchr("01234567890abcdefghijklmnopqrstuvwxyz_-.+", *s ))
|
||||
else if( !at_seen && !( !!strchr( valid_chars, *s ) || *s == '+' ) )
|
||||
return 1;
|
||||
else if( at_seen
|
||||
&& !strchr("01234567890abcdefghijklmnopqrstuvwxyz_-.", *s ) )
|
||||
else if( at_seen && !strchr( valid_chars, *s ) )
|
||||
return 1;
|
||||
}
|
||||
return 0;
|
||||
|
@ -608,7 +609,6 @@ ask_user_id( int mode )
|
|||
m_free(amail);
|
||||
amail = cpr_get("keygen.email",_("Email address: "));
|
||||
trim_spaces(amail);
|
||||
strlwr(amail);
|
||||
cpr_kill_prompt();
|
||||
if( !*amail )
|
||||
break; /* no email address is okay */
|
||||
|
|
|
@ -132,7 +132,7 @@ list_one( STRLIST names, int secret )
|
|||
}
|
||||
do {
|
||||
merge_keys_and_selfsig( keyblock );
|
||||
list_keyblock( keyblock, 0 );
|
||||
list_keyblock( keyblock, 1 );
|
||||
release_kbnode( keyblock );
|
||||
} while( !get_seckey_next( ctx, NULL, &keyblock ) );
|
||||
get_seckey_end( ctx );
|
||||
|
|
|
@ -740,6 +740,7 @@ do_proc_packets( CTX c, IOBUF a )
|
|||
if( opt.list_packets ) {
|
||||
switch( pkt->pkttype ) {
|
||||
case PKT_PUBKEY_ENC: proc_pubkey_enc( c, pkt ); break;
|
||||
case PKT_SYMKEY_ENC: proc_symkey_enc( c, pkt ); break;
|
||||
case PKT_ENCRYPTED: proc_encrypted( c, pkt ); break;
|
||||
case PKT_COMPRESSED: proc_compressed( c, pkt ); break;
|
||||
default: newpkt = 0; break;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue