summaryrefslogtreecommitdiff
path: root/src/libcamera/log.cpp
diff options
context:
space:
mode:
authorKieran Bingham <kieran.bingham@ideasonboard.com>2019-03-22 10:00:44 +0000
committerKieran Bingham <kieran.bingham@ideasonboard.com>2019-04-03 13:56:31 +0700
commit88646061e0729863116c9e2d7bfd461b47e450a4 (patch)
tree1e568676f8b7c042bee52ea7a62d65c3f1eb7d16 /src/libcamera/log.cpp
parent0e1a80952524e672ce8ce5eb900740dda2ae9044 (diff)
libcamera: utils: Use internal secure_getenv() implementation
The secure_getenv() call is not provided by all C libraries. Support this feature by implementing our own version. Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com> Signed-off-by: Kieran Bingham <kieran.bingham@ideasonboard.com>
Diffstat (limited to 'src/libcamera/log.cpp')
-rw-r--r--src/libcamera/log.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libcamera/log.cpp b/src/libcamera/log.cpp
index eb444c31..71cfbc42 100644
--- a/src/libcamera/log.cpp
+++ b/src/libcamera/log.cpp
@@ -122,7 +122,7 @@ Logger::Logger()
*/
void Logger::parseLogFile()
{
- const char *file = secure_getenv("LIBCAMERA_LOG_FILE");
+ const char *file = utils::secure_getenv("LIBCAMERA_LOG_FILE");
if (!file)
return;
@@ -140,7 +140,7 @@ void Logger::parseLogFile()
*/
void Logger::parseLogLevels()
{
- const char *debug = secure_getenv("LIBCAMERA_LOG_LEVELS");
+ const char *debug = utils::secure_getenv("LIBCAMERA_LOG_LEVELS");
if (!debug)
return;