*** empty log message ***

This commit is contained in:
David Rose 2000-10-05 18:31:18 +00:00
parent 1ad1345e90
commit 3502a58f57
4 changed files with 5 additions and 26 deletions

View File

@ -63,7 +63,7 @@ sub CTCvsLogin {
# ok, the server line is in [0] and the password in [1].
&CTUDebug( "server line from .cvspass is '" . $line[0] . "'\n" ) ;
if ( $line[0] ne $_[0] ) {
local( $line ) = "cvs -d " . $_[0] . " login" ;
local( $line ) = "cvs -d " . $_[0] . " login >/dev/null" ;
&CTUDebug( "about to run '" . $line . "'\n" ) ;
$ret = &CTURetCode( system( $line )) ;
} else {
@ -72,7 +72,7 @@ sub CTCvsLogin {
}
} else {
&CTUDebug( $path . " file does not exist\n" ) ;
local( $line ) = "cvs -d " . $_[0] . " login" ;
local( $line ) = "cvs -d " . $_[0] . " login >/dev/null" ;
&CTUDebug( "about to run '" . $line . "'\n" ) ;
$ret = &CTURetCode( system( $line )) ;
}

View File

@ -1,4 +1,7 @@
forcetype DSearchPath
forcetype Filename
forcetype Notify
forcetype NotifyCategory
forcetype NotifySeverity

View File

@ -1,7 +0,0 @@
forcetype Notify
forcetype NotifyCategory
forcetype NotifySeverity
ignoremember set_assert_handler
ignoremember get_assert_handler
ignoremember AssertHandler

View File

@ -1,17 +0,0 @@
// Filename: notify_utils.h
// Created by: drose (24May00)
//
////////////////////////////////////////////////////////////////////
#ifndef NOTIFY_UTILS_H
#define NOTIFY_UTILS_H
#include <pandabase.h>
#include <notify.h>
// The main purpose of this file is to provide a hook for
// interrogating Notify.
#endif