summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTomasz Swierczek <t.swierczek@samsung.com>2023-07-13 13:18:00 +0200
committerTomasz Swierczek <t.swierczek@samsung.com>2023-07-13 13:18:00 +0200
commitabbf9896c615ef24c8bfbdb821737b375f1cbdd7 (patch)
tree9c6adf2c31e8b6828afbb2b5caa5d0f3a3c63643
parent1967395f4c21f89fff2f9e38b0b856366b6e78ab (diff)
downloadcert-checker-tizen.tar.gz
cert-checker-tizen.tar.bz2
cert-checker-tizen.zip
Change-Id: I08f91b387c25d78aa9e7b6b66ec5b6b65475b251
-rw-r--r--src/service/app.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/service/app.cpp b/src/service/app.cpp
index 3a7bd79..83de92c 100644
--- a/src/service/app.cpp
+++ b/src/service/app.cpp
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2015 Samsung Electronics Co., Ltd All Rights Reserved
+ * Copyright (c) 2015 - 2023 Samsung Electronics Co., Ltd All Rights Reserved
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -67,7 +67,7 @@ std::string app_t::str_certs(void) const
for (const auto &iter : signatures) {
ss << " { ";
- for (const auto iter_cert : iter) {
+ for (const auto &iter_cert : iter) {
ss << "\"" << iter_cert << "\", ";
}