- dtucker@cvs.openbsd.org 2014/01/20 00:00:30
     [sftp-chroot.sh]
     append to rather than truncating the log file
diff --git a/ChangeLog b/ChangeLog
index f6ffb16..7d8d827 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -18,7 +18,9 @@
      [regress/sftp-chroot.sh]
      Don't use -q on sftp as it suppresses logging, instead redirect the
      output to the regress logfile.
-
+   - dtucker@cvs.openbsd.org 2014/01/20 00:00:30
+     [sftp-chroot.sh]
+     append to rather than truncating the log file
  - (djm) [README contrib/caldera/openssh.spec contrib/redhat/openssh.spec]
    [contrib/suse/openssh.spec] Crank version numbers
 
diff --git a/regress/sftp-chroot.sh b/regress/sftp-chroot.sh
index cb731df..23f7456 100644
--- a/regress/sftp-chroot.sh
+++ b/regress/sftp-chroot.sh
@@ -1,4 +1,4 @@
-#	$OpenBSD: sftp-chroot.sh,v 1.3 2014/01/19 23:43:02 dtucker Exp $
+#	$OpenBSD: sftp-chroot.sh,v 1.4 2014/01/20 00:00:30 dtucker Exp $
 #	Placed in the Public Domain.
 
 tid="sftp in chroot"
@@ -19,7 +19,7 @@
 
 verbose "test $tid: get"
 ${SFTP} -S "$SSH" -F $OBJ/ssh_config host:/${FILENAME} $COPY \
-    >$TEST_REGRESS_LOGFILE 2>&1 || \
+    >>$TEST_REGRESS_LOGFILE 2>&1 || \
 	fatal "Fetch ${FILENAME} failed"
 cmp $PRIVDATA $COPY || fail "$PRIVDATA $COPY differ"