gwynne          Mon, 20 Jul 2009 04:42:01 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=284414

Changed paths:
        U   SVNROOT/commit-svnroot.php

Log:
oops, stderr->STDERR

Modified: SVNROOT/commit-svnroot.php
===================================================================
--- SVNROOT/commit-svnroot.php  2009-07-20 04:40:31 UTC (rev 284413)
+++ SVNROOT/commit-svnroot.php  2009-07-20 04:42:01 UTC (rev 284414)
@@ -25,7 +25,7 @@
     }
     chdir(__DIR__);
     exec('exec svn update', $output, $status);
-    fwrite(stderr, implode("\n", $output) . "\n");
+    fwrite(STDERR, implode("\n", $output) . "\n");
     if ($status != 0) {
         fail("svn update on SVNROOT failed with exit code {$status}!\n");
     }

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to