- [regress/reconfigure/sh] Make path to sshd fully qualified if required.
diff --git a/regress/reconfigure.sh b/regress/reconfigure.sh
index 4315f0a..ba6dbc6 100644
--- a/regress/reconfigure.sh
+++ b/regress/reconfigure.sh
@@ -4,7 +4,14 @@
 tid="simple connect after reconfigure"
 
 # we need the full path to sshd for -HUP
-SSHD=/usr/sbin/sshd
+case $SSHD in
+/*)
+	# full path is OK 
+	;;
+*)
+	# otherwise make fully qualified
+	SSHD=$OBJ/$SSHD
+esac
 
 start_sshd