diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 7 | ||||
| -rw-r--r-- | lib-src/pop.c | 4 |
2 files changed, 7 insertions, 4 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index f036480180e..51a5c307e47 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,10 @@ | |||
| 1 | 1999-10-11 Jonathan I. Kamens <jik@kamens.brookline.ma.us> | ||
| 2 | |||
| 3 | * pop.c: Use "pop3" as the POP service name on all platforms, | ||
| 4 | instead of using "pop" on Unix and "pop3" on Windows NT. "pop3" | ||
| 5 | has been the standard service name since RFC 1340 was published in | ||
| 6 | July 1992, so I think it's safe to start using it by default. | ||
| 7 | |||
| 1 | 1999-09-27 Dave Love <fx@gnu.org> | 8 | 1999-09-27 Dave Love <fx@gnu.org> |
| 2 | 9 | ||
| 3 | * make-docfile.c (scan_lisp_file): Fix typo causing infloop. | 10 | * make-docfile.c (scan_lisp_file): Fix typo causing infloop. |
diff --git a/lib-src/pop.c b/lib-src/pop.c index 69e6e465234..57a5b197b0b 100644 --- a/lib-src/pop.c +++ b/lib-src/pop.c | |||
| @@ -152,11 +152,7 @@ static char *find_crlf _P((char *, int)); | |||
| 152 | #define ERROR_MAX 80 /* a pretty arbitrary size */ | 152 | #define ERROR_MAX 80 /* a pretty arbitrary size */ |
| 153 | #define POP_PORT 110 | 153 | #define POP_PORT 110 |
| 154 | #define KPOP_PORT 1109 | 154 | #define KPOP_PORT 1109 |
| 155 | #ifdef WINDOWSNT | ||
| 156 | #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ | 155 | #define POP_SERVICE "pop3" /* we don't want the POP2 port! */ |
| 157 | #else | ||
| 158 | #define POP_SERVICE "pop" | ||
| 159 | #endif | ||
| 160 | #ifdef KERBEROS | 156 | #ifdef KERBEROS |
| 161 | #define KPOP_SERVICE "kpop" | 157 | #define KPOP_SERVICE "kpop" |
| 162 | #endif | 158 | #endif |