diff options
| author | Grant Limberg <[email protected]> | 2023-11-16 09:34:14 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2023-11-16 09:34:14 -0800 |
| commit | 2e882b4af2d32959d6020b3e40b6530050ba7204 (patch) | |
| tree | 982d1292e8398d010432da153ead25d42626bafe | |
| parent | 2fd50b104c9431a603310800b9ee4d0d44ce9391 (diff) | |
| parent | a477688e5147ee534efb27f02f21f5db75cd47e1 (diff) | |
Merge branch 'dev' into network-check
| -rw-r--r-- | SECURITY.md | 6 | ||||
| -rw-r--r-- | one.cpp | 2 |
2 files changed, 4 insertions, 4 deletions
diff --git a/SECURITY.md b/SECURITY.md index 9aba97de..f37df39f 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -9,9 +9,9 @@ The following versions of ZeroTier One receive security updates | Version | Supported | | ------- | ------------------ | -| 1.10.x | :white_check_mark: | -| 1.8.x | :white_check_mark: | -| < 1.8.0 | :x: | +| 1.12.x | :white_check_mark: | +| 1.10.x | :white_check_mark: | +| < 1.10.0 | :x: | ## Reporting a Vulnerability @@ -1210,7 +1210,7 @@ static int cli(int argc,char **argv) FSRefMakePath(&fsref, path, sizeof(path)) == noErr) { } else if (getenv("SUDO_USER")) { - sprintf((char*)path, "/Users/%s/Desktop/", getenv("SUDO_USER")); + sprintf((char*)path, "/Users/%s/Desktop", getenv("SUDO_USER")); } else { fprintf(stdout, "%s", dump.str().c_str()); return 0; |
