From 30135570c787145d3ff5107ea4fd47de5b48c92a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E9=80=9A=E6=B4=B2?= Date: Tue, 11 Jun 2024 09:01:54 +0800 Subject: [PATCH] OS (macOS): add code name of Sequoia --- src/detection/os/os_apple.m | 1 + 1 file changed, 1 insertion(+) diff --git a/src/detection/os/os_apple.m b/src/detection/os/os_apple.m index d08aed435..f82d7a501 100644 --- a/src/detection/os/os_apple.m +++ b/src/detection/os/os_apple.m @@ -37,6 +37,7 @@ static bool detectOSCodeName(FFOSResult* os) switch (num) { + case 15: ffStrbufSetStatic(&os->codename, "Sequoia"); return true; case 14: ffStrbufSetStatic(&os->codename, "Sonoma"); return true; case 13: ffStrbufSetStatic(&os->codename, "Ventura"); return true; case 12: ffStrbufSetStatic(&os->codename, "Monterey"); return true;