summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Anthony <john.anthony@redpointglobal.com>2020-03-25 11:06:24 -0600
committerJohn Anthony <john.anthony@redpointglobal.com>2020-03-25 11:06:24 -0600
commit98ab6f28e5230f5561182c9914801d6d3a83b2bd (patch)
tree4327e060fa528413045aaddc6977108a0be75b1b
parent26eb8172a683665ac3dd17d9f2eade14927dffb9 (diff)
downloadATCD-98ab6f28e5230f5561182c9914801d6d3a83b2bd.tar.gz
removing trailing spaces
-rw-r--r--ACE/ace/SSL/SSL_SOCK_Acceptor.cpp6
-rw-r--r--ACE/ace/SSL/SSL_SOCK_Connector.cpp4
2 files changed, 5 insertions, 5 deletions
diff --git a/ACE/ace/SSL/SSL_SOCK_Acceptor.cpp b/ACE/ace/SSL/SSL_SOCK_Acceptor.cpp
index 4e5e926e0f0..0ed05b0052f 100644
--- a/ACE/ace/SSL/SSL_SOCK_Acceptor.cpp
+++ b/ACE/ace/SSL/SSL_SOCK_Acceptor.cpp
@@ -138,7 +138,7 @@ ACE_SSL_SOCK_Acceptor::ssl_accept (ACE_SSL_SOCK_Stream &new_stream,
fds.events = POLLOUT;
#else
wr_handle.set_bit (handle);
-#endif /* ACE_HAS_POLL */
+#endif /* ACE_HAS_POLL */
}
else if (SSL_want_read (ssl))
{
@@ -147,9 +147,9 @@ ACE_SSL_SOCK_Acceptor::ssl_accept (ACE_SSL_SOCK_Stream &new_stream,
fds.events = POLLIN;
#else
rd_handle.set_bit (handle);
-#endif /* ACE_HAS_POLL */
+#endif /* ACE_HAS_POLL */
}
- else
+ else
{
status = -1; // Doesn't want anything - bail out
}
diff --git a/ACE/ace/SSL/SSL_SOCK_Connector.cpp b/ACE/ace/SSL/SSL_SOCK_Connector.cpp
index 21ac837ec4c..d85fd545d27 100644
--- a/ACE/ace/SSL/SSL_SOCK_Connector.cpp
+++ b/ACE/ace/SSL/SSL_SOCK_Connector.cpp
@@ -145,7 +145,7 @@ ACE_SSL_SOCK_Connector::ssl_connect (ACE_SSL_SOCK_Stream &new_stream,
fds.events = POLLOUT;
#else
wr_handle.set_bit (handle);
-#endif /* ACE_HAS_POLL */
+#endif /* ACE_HAS_POLL */
}
else if (SSL_want_read (ssl))
{
@@ -154,7 +154,7 @@ ACE_SSL_SOCK_Connector::ssl_connect (ACE_SSL_SOCK_Stream &new_stream,
fds.events = POLLIN;
#else
rd_handle.set_bit (handle);
-#endif /* ACE_HAS_POLL */
+#endif /* ACE_HAS_POLL */
}
else
{