diff options
author | 2002-07-03 14:21:05 +0000 | |
---|---|---|
committer | 2002-07-03 14:21:05 +0000 | |
commit | d851c2beac75366f5d9c81fa586fe8cb6f14bbde (patch) | |
tree | a50ef41ed10f9f3d3afdbc2f323aa2079c262c92 /usr.bin/ssh/ssh-keysign | |
parent | use RSA_blinding_on() for rsa hostkeys (suggested by Bill Sommerfeld) (diff) | |
download | wireguard-openbsd-d851c2beac75366f5d9c81fa586fe8cb6f14bbde.tar.xz wireguard-openbsd-d851c2beac75366f5d9c81fa586fe8cb6f14bbde.zip |
re-enable ssh-keysign's sbit, but make ssh-keysign read /etc/ssh/ssh_config
and exit if HostbasedAuthentication is disabled globally. based on discussions
with deraadt, itojun and sommerfeld; ok itojun@
Diffstat (limited to 'usr.bin/ssh/ssh-keysign')
-rw-r--r-- | usr.bin/ssh/ssh-keysign/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/ssh-keysign/Makefile b/usr.bin/ssh/ssh-keysign/Makefile index 56d7832de51..19bd9b50192 100644 --- a/usr.bin/ssh/ssh-keysign/Makefile +++ b/usr.bin/ssh/ssh-keysign/Makefile @@ -1,16 +1,16 @@ -# $OpenBSD: Makefile,v 1.4 2002/07/01 08:05:48 markus Exp $ +# $OpenBSD: Makefile,v 1.5 2002/07/03 14:21:05 markus Exp $ .PATH: ${.CURDIR}/.. PROG= ssh-keysign BINOWN= root -#BINMODE?=4555 +BINMODE?=4555 BINDIR= /usr/libexec MAN= ssh-keysign.8 -SRCS= ssh-keysign.c +SRCS= ssh-keysign.c readconf.c .include <bsd.prog.mk> |