From c3e071579d60a84d91160aed56b473d7d80192e1 Mon Sep 17 00:00:00 2001 From: Nicholas Kruzan Date: Mon, 4 Apr 2022 13:06:29 +0000 Subject: [PATCH] AP_Filesystem: AP_Filesystem_ESP32 allow_absolute_paths in ::open() --- libraries/AP_Filesystem/AP_Filesystem_ESP32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/AP_Filesystem/AP_Filesystem_ESP32.cpp b/libraries/AP_Filesystem/AP_Filesystem_ESP32.cpp index 3e34ba4a23..de285e358e 100644 --- a/libraries/AP_Filesystem/AP_Filesystem_ESP32.cpp +++ b/libraries/AP_Filesystem/AP_Filesystem_ESP32.cpp @@ -26,7 +26,7 @@ extern const AP_HAL::HAL& hal; -int AP_Filesystem_ESP32::open(const char *fname, int flags) +int AP_Filesystem_ESP32::open(const char *fname, int flags, bool allow_absolute_paths) { #if FSDEBUG printf("DO open %s \n", fname);