# the case that perhaps the condor_startd crashes.  It tells the
 # condor_master to exit if it notices for any reason that the
 # condor_startd is not running within 1 minute of startup.
-MASTER.DAEMON_SHUTDOWN_FAST = ( STARTD_StartTime == 0 ) && ((CurrentTime - DaemonStartTime) > 60)
+MASTER.DAEMON_SHUTDOWN_FAST = ( STARTD_StartTime == 0 ) && ((time() - DaemonStartTime) > 60)
 {endcode}