Commit 879e9432 authored by Pavel Shilovsky's avatar Pavel Shilovsky

Delete redundant code for centos52

parent 5ac69350
......@@ -1558,8 +1558,6 @@ ipv4_connect(struct sockaddr_in *psin_server, struct socket **csocket,
}
if (!orig_port_error && !connected) {
/* do not retry on the same port we just failed on */
if (psin_server->sin_port != htons(CIFS_PORT)) {
psin_server->sin_port = htons(CIFS_PORT);
rc = (*csocket)->ops->connect(*csocket,
......@@ -1568,7 +1566,6 @@ ipv4_connect(struct sockaddr_in *psin_server, struct socket **csocket,
if (rc >= 0)
connected = 1;
}
}
if (!orig_port_error && !connected) {
psin_server->sin_port = htons(RFC1001_PORT);
......@@ -1703,8 +1700,6 @@ ipv6_connect(struct sockaddr_in6 *psin_server, struct socket **csocket)
}
if (!orig_port_error && !connected) {
/* do not retry on the same port we just failed on */
if (psin_server->sin6_port != htons(CIFS_PORT)) {
psin_server->sin6_port = htons(CIFS_PORT);
rc = (*csocket)->ops->connect(*csocket,
......@@ -1713,7 +1708,6 @@ ipv6_connect(struct sockaddr_in6 *psin_server, struct socket **csocket)
if (rc >= 0)
connected = 1;
}
}
if (!orig_port_error && !connected) {
psin_server->sin6_port = htons(RFC1001_PORT);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment