]> granicus.if.org Git - neomutt/commitdiff
Use mutt_sleep(0)
authorPietro Cerutti <gahr@gahr.ch>
Tue, 10 Oct 2017 12:32:45 +0000 (12:32 +0000)
committerRichard Russon <rich@flatcap.org>
Tue, 10 Oct 2017 14:13:11 +0000 (15:13 +0100)
Issue #777

ncrypt/crypt_gpgme.c
ncrypt/pgpkey.c
ncrypt/smime.c

index dc5cac5220961f5e9e85a39ed2d1af996ad6c7da..5bcc49adacfcb21a1f11fab7e85577368a430fab 100644 (file)
@@ -4542,7 +4542,7 @@ static struct CryptKeyInfo *crypt_ask_for_key(char *tag, char *whatfor, short ab
       return key;
 
     mutt_error(_("No matching keys found for \"%s\""), resp); 
-    mutt_sleep(2);
+    mutt_sleep(0);
   }
   /* not reached */
 }
index 79ebf99f098e02b84751dd21825bd3abea08f8a2..e3516c52189eb8b8c9dd62f33737651fcab7c5d9 100644 (file)
@@ -703,7 +703,7 @@ struct PgpKeyInfo *pgp_ask_for_key(char *tag, char *whatfor, short abilities, en
       return key;
 
     mutt_error(_("No matching keys found for \"%s\""), resp); 
-    mutt_sleep(2);
+    mutt_sleep(0);
   }
   /* not reached */
 }
index 53d67ead8c8e08b34ff44f647903c6e124857d30..cebeefe160cc6f040d925a69fcd1f457db8190da 100644 (file)
@@ -756,7 +756,7 @@ static struct SmimeKey *smime_ask_for_key(char *prompt, short abilities, short p
       return key;
 
     mutt_error(_("No matching keys found for \"%s\""), resp); 
-    mutt_sleep(2);
+    mutt_sleep(0);
   }
 }