Commit c6290cee authored by Pavel Shilovsky's avatar Pavel Shilovsky

Delete redundant code for 2.6.24

parent f1084159
......@@ -1524,8 +1524,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,
......@@ -1534,7 +1532,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);
......@@ -1654,8 +1651,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,
......@@ -1664,7 +1659,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