summaryrefslogtreecommitdiff
path: root/regress/reconfigure.sh
diff options
context:
space:
mode:
Diffstat (limited to 'regress/reconfigure.sh')
-rw-r--r--regress/reconfigure.sh9
1 files changed, 8 insertions, 1 deletions
diff --git a/regress/reconfigure.sh b/regress/reconfigure.sh
index 4315f0a40..ba6dbc6f5 100644
--- a/regress/reconfigure.sh
+++ b/regress/reconfigure.sh
@@ -4,7 +4,14 @@
4tid="simple connect after reconfigure" 4tid="simple connect after reconfigure"
5 5
6# we need the full path to sshd for -HUP 6# we need the full path to sshd for -HUP
7SSHD=/usr/sbin/sshd 7case $SSHD in
8/*)
9 # full path is OK
10 ;;
11*)
12 # otherwise make fully qualified
13 SSHD=$OBJ/$SSHD
14esac
8 15
9start_sshd 16start_sshd
10 17