aboutsummaryrefslogtreecommitdiffstats
path: root/driver.c
diff options
context:
space:
mode:
Diffstat (limited to 'driver.c')
-rw-r--r--driver.c22
1 files changed, 0 insertions, 22 deletions
diff --git a/driver.c b/driver.c
index 6d2227c7..ad8bb016 100644
--- a/driver.c
+++ b/driver.c
@@ -17,9 +17,6 @@
#include <varargs.h>
#include <sys/time.h>
#include <signal.h>
-#ifdef HAVE_RRESVPORT_H
-#include <netinet/in.h>
-#endif /* HAVE_RRESVPORT_H */
#include "socket.h"
#include "fetchmail.h"
@@ -542,25 +539,6 @@ struct method *proto;
tagnum = 0;
protocol = proto;
-#ifdef HAVE_RRESVPORT_H
- /*
- * If we're trying to bind to a reserved port on the remote system,
- * do likewise on the local one so the remote will know we're privileged.
- * (This is most likely to happen in connection with RPOP.)
- */
- if (queryctl->port < IPPORT_RESERVED)
- {
- ok = IPPORT_RESERVED - 1;
- if ((privport = rresvport(&ok)) == -1 || alarmed)
- {
- perror("fetchmail, binding to reserved port");
- alarm(0);
- signal(SIGALRM, sigsave);
- return(PS_SOCKET);
- }
- }
-#endif /* HAVE_RRESVPORT_H */
-
/* open a socket to the mail server */
if ((socket = Socket(queryctl->servername,
queryctl->port ? queryctl->port : protocol->port))<0