redirect output from the update check to /dev/null

This commit is contained in:
Cary Sandvig 2000-10-05 22:45:57 +00:00
parent 36f6ff0714
commit b2475b1222

View File

@ -329,7 +329,7 @@ sub CTCvsIHave {
local( $serve ) = &CTCvsServerLine( $_[0], $_[2] ) ;
local( $ok ) = &CTCvsLogin( $serve ) ;
if ( $ok ) {
$line = $line . "cvs -n -d " . $serve . " update" ;
$line = $line . "cvs -n -d " . $serve . " update 2>/dev/null" ;
local( $hold ) = "";
local( *OUTPUT ) ;
open( OUTPUT, $line . " |" ) ;