diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-03-31 15:25:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2014-03-31 15:25:27 +0000 |
commit | 94227fdaeb807779420752640de378e417756c3b (patch) | |
tree | 68aa617fd9a68b8e4362d61706ca95a41fcb10da /usr.bin | |
parent | ddb37510b54ab341259f57dd831e1c36c960f729 (diff) |
ssh has a target painted on it's back, so use -fstack-protector-all
dtucker mentioned that -portable does this
Diffstat (limited to 'usr.bin')
-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 |