diff options
author | Hajimu UMEMOTO <ume@FreeBSD.org> | 2002-08-16 18:55:48 +0000 |
---|---|---|
committer | Hajimu UMEMOTO <ume@FreeBSD.org> | 2002-08-16 18:55:48 +0000 |
commit | 78436998f85a960d1d264299b6290cf904df84a1 (patch) | |
tree | 387f9126fad1bbdec78ca7ca60ae3a636e146f73 /mail/cyrus-imapd23/files | |
parent | Update an IPv6 patch to 20020817. (diff) |
cyradm didn't show password prompt correctly.
Reported by: Joseph Scott <joseph@randomnetworks.com>
Notes
Notes:
svn path=/head/; revision=64586
Diffstat (limited to 'mail/cyrus-imapd23/files')
-rw-r--r-- | mail/cyrus-imapd23/files/patch-perl::imap::IMAP.xs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/mail/cyrus-imapd23/files/patch-perl::imap::IMAP.xs b/mail/cyrus-imapd23/files/patch-perl::imap::IMAP.xs new file mode 100644 index 000000000000..9e93043123d3 --- /dev/null +++ b/mail/cyrus-imapd23/files/patch-perl::imap::IMAP.xs @@ -0,0 +1,12 @@ +Index: perl/imap/IMAP.xs +diff -u perl/imap/IMAP.xs.orig perl/imap/IMAP.xs +--- perl/imap/IMAP.xs.orig Sun May 26 04:57:49 2002 ++++ perl/imap/IMAP.xs Sat Aug 17 03:47:36 2002 +@@ -194,6 +194,7 @@ + if(!text->password) { + char *ptr; + printf("Password: "); ++ fflush(stdout); + ptr = getpass(""); + text->password = safemalloc(sizeof(sasl_secret_t) + strlen(ptr)); + text->password->len = strlen(ptr); |