summaryrefslogtreecommitdiff
path: root/ACE
diff options
context:
space:
mode:
authorstanleyk <stanleyk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-02-16 21:54:39 +0000
committerstanleyk <stanleyk@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2013-02-16 21:54:39 +0000
commit490a6da9f2c2251d0e9999cf8a5e33ebd3f79c95 (patch)
tree33485e0d082f4887fef117d85cf4ae371fcb7535 /ACE
parentc9f438b24e428bda9dfc9edad15da00f97f28b7e (diff)
downloadATCD-490a6da9f2c2251d0e9999cf8a5e33ebd3f79c95.tar.gz
Fixed missing comma in enumerations
Diffstat (limited to 'ACE')
-rw-r--r--ACE/ChangeLog10
-rw-r--r--ACE/ace/SSL/SSL_Context.h2
2 files changed, 9 insertions, 3 deletions
diff --git a/ACE/ChangeLog b/ACE/ChangeLog
index 10268c4a392..75cbff3e2a2 100644
--- a/ACE/ChangeLog
+++ b/ACE/ChangeLog
@@ -1,9 +1,15 @@
+Sat Feb 16 21:53:26 UTC 2013 Kevin Stanley <stanleyk@ociweb.com>
+
+ * ace/SSL/SSL_Context.h:
+
+ Fixed missing ',' in enumerated type value.
+
Sat Feb 16 14:42:54 UTC 2013 Douglas C. Schmidt <schmidt@dre.vanderbilt.edu>
* examples/C++NPv2/AIO_Client_Logging_Daemon.cpp: Moved the definition of
-
+
ACE_FACTORY_DEFINE (AIO_CLD, AIO_Client_Logging_Daemon)
-
+
to the right place in the #ifdefs. Thanks to Journeyer J. Joh
<oosaprogrammer at gmail dot com> for reporting this.
diff --git a/ACE/ace/SSL/SSL_Context.h b/ACE/ace/SSL/SSL_Context.h
index b2de8b05b19..2a71a2bc440 100644
--- a/ACE/ace/SSL/SSL_Context.h
+++ b/ACE/ace/SSL/SSL_Context.h
@@ -117,7 +117,7 @@ public:
SSLv23,
TLSv1_client,
TLSv1_server,
- TLSv1
+ TLSv1,
TLSv1_1_client,
TLSv1_1_server,
TLSv1_1,