diff options
author | Eric S. Raymond <esr@thyrsus.com> | 1997-09-28 03:10:40 +0000 |
---|---|---|
committer | Eric S. Raymond <esr@thyrsus.com> | 1997-09-28 03:10:40 +0000 |
commit | 93ed35b7ce8383d96a622a82df9d49a5b37b3a0b (patch) | |
tree | d48196d5a2c50ed0064446dfb93eedf4624ea868 /driver.c | |
parent | 5e34a93bd55e96d327379a98e4011b2db0e8303a (diff) | |
download | fetchmail-93ed35b7ce8383d96a622a82df9d49a5b37b3a0b.tar.gz fetchmail-93ed35b7ce8383d96a622a82df9d49a5b37b3a0b.tar.bz2 fetchmail-93ed35b7ce8383d96a622a82df9d49a5b37b3a0b.zip |
Fix POP2 compilation.
svn path=/trunk/; revision=1426
Diffstat (limited to 'driver.c')
-rw-r--r-- | driver.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -597,7 +597,7 @@ int num; /* index of message */ * forward it to the user so he or she will have some clue * that things have gone awry. */ - if (protocol != pop2) + if (protocol->port != 109) #endif /* POP2_ENABLE */ if (num == 1 && !strncasecmp(line, "X-IMAP:", 7)) return(PS_RETAINED); |