diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1996-08-02 16:25:37 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1996-08-02 16:25:37 +0000 |
commit | de5afa980961b42da96ac88d4a60b211d309c00a (patch) | |
tree | 55010b55e1bf14c599a04e1aa0d532cda4010825 | |
parent | 1b9705a93cf367a9fafb683fdb5a7e122be50e83 (diff) | |
download | fetchmail-de5afa980961b42da96ac88d4a60b211d309c00a.tar.gz fetchmail-de5afa980961b42da96ac88d4a60b211d309c00a.tar.bz2 fetchmail-de5afa980961b42da96ac88d4a60b211d309c00a.zip |
Minor bug fixes.
svn path=/trunk/; revision=47
-rw-r--r-- | Makefile.in | 2 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rw-r--r-- | pop3.c | 4 |
3 files changed, 7 insertions, 3 deletions
diff --git a/Makefile.in b/Makefile.in index c3f6b409..e801cc1e 100644 --- a/Makefile.in +++ b/Makefile.in @@ -124,7 +124,7 @@ tags: $(tagsrcs) .PHONY: install installdirs install: installdirs \ - $(bindir)/$(instname) $(infodir)/popclient.info \ + $(bindir)/$(instname) # $(infodir)/popclient.info \ $(mandir)/$(instname).$(manext) installdirs: @@ -19,6 +19,10 @@ S/key for secure challenge-response. Implement IMAP support. +3.03: + +* Minor bug fixes for password querying and redirection to stdout. + 3.02: * Correct buggy processing of nokeep/noflush/fetchall. @@ -70,8 +70,8 @@ struct hostrec *queryctl; int first,number,count; - /* open/lock the folder if we're using a mailbox */ - if (queryctl->output == TO_FOLDER) + /* open stdout or the mailbox, locking it if it is a folder */ + if (queryctl->output == TO_FOLDER || queryctl->output == TO_STDOUT) if ((mboxfd = openuserfolder(queryctl)) < 0) return(PS_IOERR); |