upstream: Use egrep when searching for an anchored string.
OpenBSD-Regress-ID: dd114a2ac27ac4b06f9e4a586d3f6320c54aeeb4
This commit is contained in:
parent
6bf2efa267
commit
4bc2ba6095
|
@ -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.
|
# Placed in the Public Domain.
|
||||||
|
|
||||||
tid="agent restrictions"
|
tid="agent restrictions"
|
||||||
|
@ -328,7 +328,7 @@ if test ! -z "\$me" ; then
|
||||||
cat \$SSH_USER_AUTH
|
cat \$SSH_USER_AUTH
|
||||||
fi
|
fi
|
||||||
echo AGENT
|
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
|
if test -z "\$next" ; then
|
||||||
touch $OBJ/done
|
touch $OBJ/done
|
||||||
echo "FINISH"
|
echo "FINISH"
|
||||||
|
|
Loading…
Reference in New Issue