diff options
author | 2014-03-31 15:25:26 +0000 | |
---|---|---|
committer | 2014-03-31 15:25:26 +0000 | |
commit | c36fd2af17c2d30d3caf4a2477d2898a54e47bc5 (patch) | |
tree | 76101b64020b3e512d2d02e66673cf9c69993540 | |
parent | Remove a redundant assignment for slashp in findnonblank(). (diff) | |
download | wireguard-openbsd-c36fd2af17c2d30d3caf4a2477d2898a54e47bc5.tar.xz wireguard-openbsd-c36fd2af17c2d30d3caf4a2477d2898a54e47bc5.zip |
ssh has a target painted on it's back, so use -fstack-protector-all
dtucker mentioned that -portable does this
-rw-r--r-- | usr.bin/ssh/Makefile.inc | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/ssh/Makefile.inc b/usr.bin/ssh/Makefile.inc index d5703351fe3..e83c0426d06 100644 --- a/usr.bin/ssh/Makefile.inc +++ b/usr.bin/ssh/Makefile.inc @@ -1,8 +1,9 @@ -# $OpenBSD: Makefile.inc,v 1.44 2014/02/28 22:46:54 deraadt Exp $ +# $OpenBSD: Makefile.inc,v 1.45 2014/03/31 15:25:26 deraadt Exp $ .include <bsd.own.mk> CFLAGS+= -I${.CURDIR}/.. +CFLAGS+= -fstack-protector-all CDIAGFLAGS= -Wall CDIAGFLAGS+= -Wchar-subscripts |