svn commit: r266126 - user/des/tinderbox

Dag-Erling Smørgrav des at FreeBSD.org
Thu May 15 14:20:27 UTC 2014


Author: des
Date: Thu May 15 14:20:27 2014
New Revision: 266126
URL: http://svnweb.freebsd.org/changeset/base/266126

Log:
  Unbreak the history file.

Modified:
  user/des/tinderbox/tbmaster.pl

Modified: user/des/tinderbox/tbmaster.pl
==============================================================================
--- user/des/tinderbox/tbmaster.pl	Thu May 15 14:16:55 2014	(r266125)
+++ user/des/tinderbox/tbmaster.pl	Thu May 15 14:20:27 2014	(r266126)
@@ -264,7 +264,7 @@ sub history($$$) {
     $history .= $success ? "OK\n" : "FAIL\n";
 
     my $fn = expand('LOGDIR') . "/history";
-    if (open(my $fh, '>>', $1)) {
+    if (open(my $fh, '>>', $fn)) {
 	print($fh $history);
 	close($fh);
     } else {


More information about the svn-src-user mailing list