summaryrefslogtreecommitdiff
path: root/src/components/policy
diff options
context:
space:
mode:
authorShobhit Adlakha <ShobhitAd@users.noreply.github.com>2021-07-09 16:42:43 -0400
committerGitHub <noreply@github.com>2021-07-09 16:42:43 -0400
commiteaec9b47a5e9b31c282cd0ef0dcdd0d8ed8e1a52 (patch)
treec5f83515ad39c5c858b8645c4170dec14ec0376d /src/components/policy
parent5a6ef2cf7260e1190bf3c23da8026f7e8c7eab8d (diff)
downloadsdl_core-eaec9b47a5e9b31c282cd0ef0dcdd0d8ed8e1a52.tar.gz
Feature/Update Minimum Supported Version to Ubuntu 18 (#3727)
* Remove references to ubuntu 16 in documentation * Remove older ssl ciphers from crypto manager * Fix style * Change logs for unsupported protocols * Update clang-format version to 8 and re-run style script * Apply suggestions from code review Co-authored-by: Collin <iCollin@users.noreply.github.com> * Drop support for openssl 1.0 * Remove some references to OPENSSL_1_1_VERSION Co-authored-by: Collin <iCollin@users.noreply.github.com>
Diffstat (limited to 'src/components/policy')
-rw-r--r--src/components/policy/policy_external/src/policy_table/types.cc4
-rw-r--r--src/components/policy/policy_regular/src/policy_table/types.cc4
2 files changed, 6 insertions, 2 deletions
diff --git a/src/components/policy/policy_external/src/policy_table/types.cc b/src/components/policy/policy_external/src/policy_table/types.cc
index 68133f7227..9e056752a8 100644
--- a/src/components/policy/policy_external/src/policy_table/types.cc
+++ b/src/components/policy/policy_external/src/policy_table/types.cc
@@ -19,7 +19,9 @@ std::string PolicyTableTypeToString(const PolicyTableType pt_type) {
case PT_SNAPSHOT: {
return "PT_SNAPSHOT";
}
- default: { return "INVALID_PT_TYPE"; }
+ default: {
+ return "INVALID_PT_TYPE";
+ }
}
}
diff --git a/src/components/policy/policy_regular/src/policy_table/types.cc b/src/components/policy/policy_regular/src/policy_table/types.cc
index 4c122c8839..8b937f3142 100644
--- a/src/components/policy/policy_regular/src/policy_table/types.cc
+++ b/src/components/policy/policy_regular/src/policy_table/types.cc
@@ -19,7 +19,9 @@ std::string PolicyTableTypeToString(const PolicyTableType pt_type) {
case PT_SNAPSHOT: {
return "PT_SNAPSHOT";
}
- default: { return "INVALID_PT_TYPE"; }
+ default: {
+ return "INVALID_PT_TYPE";
+ }
}
}