From 244703953b0a265ad0635a52d7d075844dac9f12 Mon Sep 17 00:00:00 2001 From: Nathan Miller Date: Sat, 20 Apr 2024 13:02:49 -0700 Subject: [PATCH] revert use of _stricmp because its not available on POSIX systems (must be windows only?) --- OdbDesignServer/Controllers/DesignsController.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/OdbDesignServer/Controllers/DesignsController.cpp b/OdbDesignServer/Controllers/DesignsController.cpp index 45e6c9a1..62ddb973 100644 --- a/OdbDesignServer/Controllers/DesignsController.cpp +++ b/OdbDesignServer/Controllers/DesignsController.cpp @@ -172,7 +172,7 @@ namespace Odb::App::Server auto szExcludeFileArchive = req.url_params.get(kszExcludeFileArchiveQueryParamName); if (szExcludeFileArchive != nullptr) { - if (_stricmp(szExcludeFileArchive, "true") == 0) + if (stricmp(szExcludeFileArchive, "true") == 0) { excludeFileArchive = true; }