summaryrefslogtreecommitdiff
path: root/Mk/Features/ssp.mk
diff options
context:
space:
mode:
Diffstat (limited to 'Mk/Features/ssp.mk')
-rw-r--r--Mk/Features/ssp.mk6
1 files 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.