diff options
author | lucas <lucas@cvs.openbsd.org> | 2024-10-22 22:23:22 +0000 |
---|---|---|
committer | lucas <lucas@cvs.openbsd.org> | 2024-10-22 22:23:22 +0000 |
commit | 88e766a6d0970c4c3191b5b64f9548fdb0823491 (patch) | |
tree | 66fb5df4ccff7ba56697af572d942ae50da1e753 /etc/rc | |
parent | 1e7c88b6b7131aad7ad3eab70116cf1a2c1dfcbc (diff) |
rc: Use the correct path to sshd-auth's relink kit
From Josiah Frentsos <jfrent AT tilde.team>
OK tb
Diffstat (limited to 'etc/rc')
-rw-r--r-- | etc/rc | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1,4 +1,4 @@ -# $OpenBSD: rc,v 1.577 2024/10/14 02:46:50 deraadt Exp $ +# $OpenBSD: rc,v 1.578 2024/10/22 22:23:21 lucas Exp $ # System startup script run by init on autoboot or after single-user. # Output and error are redirected to console by init, and the console is the @@ -242,7 +242,7 @@ reorder_libs() { done for _bin in $_relink/usr/sbin/sshd $_relink/usr/libexec/sshd-session \ - $_relink/usr/bin/sshd-auth $_relink/usr/bin/ssh-agent ; do + $_relink/usr/libexec/sshd-auth $_relink/usr/bin/ssh-agent; do _tmpdir=$(mktemp -dq $_relink/_rebuild.XXXXXXXXXXXX) && ( set -o errexit |