summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--SECURITY.md6
-rw-r--r--one.cpp2
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
diff --git a/one.cpp b/one.cpp
index 4c7dd9cc..977da1f2 100644
--- a/one.cpp
+++ b/one.cpp
@@ -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;