git: 8ae001242d8f - main - Mk/Features: change ssp.mk from UTF-8 to ASCII
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Tue, 27 May 2025 11:03:21 UTC
The branch main has been updated by pi:
URL: https://cgit.FreeBSD.org/ports/commit/?id=8ae001242d8fcf49c7cee226432c05b1b5aa1228
commit 8ae001242d8fcf49c7cee226432c05b1b5aa1228
Author: Kurt Jaeger <pi@FreeBSD.org>
AuthorDate: 2025-05-27 11:02:32 +0000
Commit: Kurt Jaeger <pi@FreeBSD.org>
CommitDate: 2025-05-27 11:02:32 +0000
Mk/Features: change ssp.mk from UTF-8 to ASCII
Approved-by: mat
---
Mk/Features/ssp.mk | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/Mk/Features/ssp.mk b/Mk/Features/ssp.mk
index 631104da9f6c..2af92acd1d8e 100644
--- a/Mk/Features/ssp.mk
+++ b/Mk/Features/ssp.mk
@@ -1,10 +1,10 @@
# SSP Support
#
-# The -fstack-protector-strong flag enables “stack smashing” protection on a
+# The -fstack-protector-strong flag enables "stack smashing" protection on a
# wider set of functions than the default -fstack-protector, but without the
# full performance cost of -fstack-protector-all. Under the hood it inserts a
-# small “canary” value on the stack just before the saved return address; at
-# function exit it checks that the canary hasn’t been overwritten by a buffer
+# small "canary" value on the stack just before the saved return address; at
+# function exit it checks that the canary hasn't been overwritten by a buffer
# overflow. If it has been clobbered, the runtime aborts the program rather
# than returning into corrupted code.