From 3e2d24fc86876bf71e6a3bab5c236db75b6f1cb7 Mon Sep 17 00:00:00 2001
From: Stephan Bosch <stephan@rename-it.nl>
Date: Sat, 29 Aug 2015 13:12:58 +0200
Subject: [PATCH] Changed type of internet port values to in_port_t everywhere.

---
 src/managesieve-login/client.c | 6 +-----
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/src/managesieve-login/client.c b/src/managesieve-login/client.c
index 681d643b9..c8df51347 100644
--- a/src/managesieve-login/client.c
+++ b/src/managesieve-login/client.c
@@ -159,7 +159,6 @@ static int cmd_xclient
 (struct managesieve_client *client,
 	const struct managesieve_arg *args)
 {
-	unsigned int remote_port;
 	const char *arg;
 	bool args_ok = TRUE;
 
@@ -174,11 +173,8 @@ static int cmd_xclient
 			if (net_addr2ip(arg + 5, &client->common.ip) < 0)
 				args_ok = FALSE;
 		} else if ( strncasecmp(arg, "PORT=", 5) == 0 ) {
-			if (str_to_uint(arg + 5, &remote_port) < 0 ||
-			    remote_port == 0 || remote_port > 65535)
+			if (net_str2port(arg + 5, &client->common.remote_port) < 0)
 				args_ok = FALSE;
-			else
-				client->common.remote_port = remote_port;
 		} else if ( strncasecmp(arg, "SESSION=", 8) == 0 ) {
 			const char *value = arg + 8;
 
-- 
GitLab