upstream: Use egrep when searching for an anchored string.

OpenBSD-Regress-ID: dd114a2ac27ac4b06f9e4a586d3f6320c54aeeb4
This commit is contained in:
dtucker@openbsd.org 2022-01-12 07:18:37 +00:00 committed by Darren Tucker
parent 6bf2efa267
commit 4bc2ba6095
1 changed files with 2 additions and 2 deletions

View File

@ -1,4 +1,4 @@
# $OpenBSD: agent-restrict.sh,v 1.2 2022/01/04 07:20:33 djm Exp $
# $OpenBSD: agent-restrict.sh,v 1.3 2022/01/12 07:18:37 dtucker Exp $
# Placed in the Public Domain.
tid="agent restrictions"
@ -328,7 +328,7 @@ if test ! -z "\$me" ; then
cat \$SSH_USER_AUTH
fi
echo AGENT
$SSHADD -L | grep ^ssh | cut -d" " -f-2 | sort
$SSHADD -L | egrep "^ssh" | cut -d" " -f-2 | sort
if test -z "\$next" ; then
touch $OBJ/done
echo "FINISH"