- (tim) [regress/sftp-chroot.sh] skip if no sudo. ok dtucker
diff --git a/regress/sftp-chroot.sh b/regress/sftp-chroot.sh
index 98a364e..03b9bc6 100644
--- a/regress/sftp-chroot.sh
+++ b/regress/sftp-chroot.sh
@@ -8,7 +8,8 @@
 PRIVDATA=${CHROOT}/${FILENAME}
 
 if [ -z "$SUDO" ]; then
-	fatal "need SUDO to create file in /var/run, test won't work without"
+  echo "skipped: need SUDO to create file in /var/run, test won't work without"
+  exit 0
 fi
 
 $SUDO sh -c "echo mekmitastdigoat > $PRIVDATA" || \